@import url('https://fonts.googleapis.com/css?family=Montserrat:500');

html {
    font-family: "Montserrat", sans-serif;
    background-color: var(--background-wave);
    color: var(--text-normal);
}

* {
    padding: 0;
    margin: 0;
}

:root {
    --text-normal: rgb(255, 255, 255);
    --background-wave: #732bba;
    --background: #0d0d0d;
}

::-webkit-scrollbar {
    width: 15px;
    background: rgb(36, 36, 36);
    opacity: 50%;
}

::-webkit-scrollbar-thumb {
    background: #3d3d3d;
    border-radius: 24px;
    transition: 200ms;
}

.stars {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 95%;

    pointer-events: none;

    filter: blur(1.2px);

    z-index: 0;
}

.star {
    position: absolute;

    background: rgb(255, 255, 255, 0.6);
    box-shadow: 0 0 5px rgba(198, 198, 198, 0.6);
    border-radius: 50%;
}

.page {
    display: grid;
    grid-template-columns: 1fr 1fr;

    width: 100%;
    height: 100vh;

    background-color: var(--background);
}

.page-text {
    display: flex;
    flex-direction: column;

    padding-top: 12vw;
    padding-left: 10vw;

    gap: 1.5em;

    z-index: 2;

    h1 {
        font-size: 65px;
        font-weight: 700;
    }

    h2 {
        color: rgb(210, 210, 210);

        font-size: 21px;
        font-weight: 400;

        width: 19em;
    }

    transform: translateY(15%);
    animation: reveal 0.9s forwards;
}

@keyframes reveal {
    to {
        transform: translateY(0);
    }
}

.page-right {
    padding-top: 8vw;

    padding-left: 0;
    padding-right: 9vw;

    justify-content: right;
    justify-self: right;

    align-items: flex-end;
    text-align: right;

    img {
        max-width: 100%;
        width: auto;
        border-radius: 9px;

        transition: 0.1s ease;
    }
}

@media (max-width: 1250px) {
    .page {
        grid-template-columns: 1fr;
    }

    .page-text {
        padding-left: 0;

        justify-content: center;
        justify-self: center;
        align-items: center;

        text-align: center;
    }

    .page-right {
        padding-right: 0;
        padding-top: 5em;

        justify-content: center;
        justify-self: center;
        align-items: center;

        img {
            width: 590px;
        }
    }
}

.page-links {
    display: flex;

    gap: 1em;
    padding-top: 0.5em;

    font-size: 20px;

    a {
        all: unset;
        cursor: pointer;

        padding: 0.6em;

        background-color: rgb(60, 60, 60, 0.123);
        backdrop-filter: blur(2px);

        border: 1px solid rgba(255, 255, 255, 0.134);
        border-radius: 8px;

        transition: all 0.4s ease;
    }

    a:hover {
        background-color: rgb(80, 80, 80, 0.3);
    }
}

.wave {
    display: block;
    position: absolute;

    left: 0;
    bottom: 0;

    width: 0%;
    height: auto;

    fill: var(--background-wave);

    z-index: 1;

    transform: width(20%);
    animation: reveal2 0.6s forwards;
}

@keyframes reveal2 {
    to {
        width: 100%;
    }
}

footer {
    position: relative;
    width: 100%;
    margin: 3rem auto 2rem;
}

.footer {
    display: flex;

    width: calc(90% - 4em);
    padding: 0 0 4em;

    margin-left: auto;
    margin-right: auto;

    flex-direction: row;
    justify-content: space-between;
    justify-items: flex-start;

    gap: 3em;

    text-align: left;
    font-size: 17px;
}

.footer-column {
    display: flex;
    flex-direction: column;

    gap: 0.3em;

    p {
        color: rgba(255, 255, 255, 0.796);
        height: 1.5em;
    }

    a {
        all: unset;
        cursor: pointer;

        color: rgba(255, 255, 255, 0.4);
        transition: color 0.25s ease, color 0.25s ease;
    }

    a:hover {
        color: rgba(255, 255, 255, 0.74);
    }
}

.footer-copyright {
    display: flex;
    flex-direction: column;

    gap: 0.2em;

    p {
        color: rgba(255, 255, 255, 0.796);
        height: 1.5em;
    }

    a {
        color: rgba(255, 255, 255, 0.5);
        transition: color 0.25s ease, color 0.25s ease;
    }

    img {
        width: 2.5em;
        padding-bottom: 0.8em;
    }
}

@media (max-width: 1250px) {
    footer {
        padding-top: 10em;
    }
}

@media (max-width: 650px) {
    footer {
        padding-top: 8em;
    }

    .footer {
        display: grid;
    }
}
