@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

[data-bs-theme="light"] {
    --bs-body-bg: #f8faff;
    --bs-body-color: #05070a;
    --pk-icon-bg: rgba(28, 88, 201, 0.2);
    --pk-icon-color: #1c58c9;
    --pk-selection-bg: rgb(45, 115, 255);
    --pk-selection-color: #f8faff;
}

[data-bs-theme="dark"] {
    --bs-body-bg: #05070a;   
    --bs-body-color: #e0e6ff;
    --pk-icon-bg: rgba(45, 116, 255, 0.2);
    --pk-icon-color: #2d74ff;
    --pk-selection-bg: rgb(45, 115, 255);
    --pk-selection-color: #05070a;
}

body {
    background-color: var(--bs-body-bg);
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

#main {
    height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.head {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    font-weight: 900;
    font-size: 7rem;
}

.coming {
    font-weight: 400;
}

#socials {
    position: absolute;
    bottom: 40px;
    display: flex;
    justify-content: center;
}

.icon-square {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 7rem;
    height: 7rem;
    border-radius: 15px;
    background-color: var(--pk-icon-bg);
    color: var(--pk-icon-color);
}

.bi {
    width: 3em;
}

@media (max-width: 798px) {
    .head {
        flex-direction: column;
    }
}

@media (max-width: 400px) {
    .head {
        font-size: 5rem;
    }

    .icon-square {
        width: 5rem;
        height: 5rem;
    }
    .bi {
        width: 2.2em;
    }
}

::selection {
    background: var(--pk-selection-bg);
    color: var(--pk-selection-color);
}

.word-wrapper {
    display: inline-block;
    overflow: hidden;
    vertical-align: bottom;
}

.word {
    display: inline-block;
    transform: translateY(-100%);
    opacity: 0;
    transition:
        transform 0.8s cubic-bezier(0.2, 1, 0.3, 1),
        opacity 0.8s;
}

.word.visible {
    transform: translateY(0);
    opacity: 1;
}