@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap');

* {
    --background: #FCFCFC;
    --text: #1d1d1d;
    --secondary: #5784E5;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Quicksand", sans-serif;
    background-color: var(--background);
    height: 100vh;
    width: 100vw;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
}

.container .content {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: 60%;
    padding: .25rem;
    margin: auto;
}

.container .links {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    list-style: none;
    font-size: 55px;
    height: 100%;
}

.container .links .link a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;

    transition: .2s;
}

.container .links .link a:hover {
    color: var(--secondary);
}

.container .divider {
    border-left: 4px solid var(--text);
    height: 100%;
    margin-left: 1rem;
    margin-right: 3rem;
}

.container .text-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    width: 35%;
    height: 100%;
}

.container .text-wrapper .text h1 {
    font-size: 70px;
    font-weight: 600;
    margin-bottom: .5rem;
}

.container .text-wrapper .text span {
    color: var(--secondary);
}

.container .text-wrapper .text h2 {
    font-size: 43px;
    font-weight: 500;
    margin-bottom: 2rem;
}

.container .text-wrapper .text p {
    font-size: 32px;
    margin-bottom: 1rem;
}

@media screen and (max-width: 1700px) {
    .container .content {
        height: 80%;
    }

    .container .content .text-wrapper {
        width: 60%;
    }    
}

@media screen and (max-width: 1100px) {
    .container .content {
        height: 85%
    }

    .container .content .links .link {
        font-size: 45px;
    }

    .container .content .text-wrapper {
        width: 100%;
    }

    .container .content .text-wrapper h1 {
        font-size: 60px;
    }

    .container .content .text-wrapper h2 {
        font-size: 35px;
    }

    .container .content .text-wrapper p {
        font-size: 28px;
    }
}

@media screen and (max-width: 850px) {
    .container .content .links .link {
        font-size: 30px;
    }

    .container .content .divider {
        margin-right: 1rem;
    }

    .container .content .text-wrapper h1 {
        font-size: 50px;
    }

    .container .content .text-wrapper h2 {
        font-size: 30px;
    }

    .container .content .text-wrapper p {
        font-size: 25px;
    }
}

@media screen and (max-width: 630px) {
    .container .content {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: auto;
    }

    .container .content .links {
        order: 3;
        width: 100%;
        flex-direction: row;
        justify-content: space-around;
        align-items: flex-start;
        margin: 0;
    }

    .container .content .divider {
        order: 2;
        border-left: none;
        width: 80%;
        margin: 0;
        border-top: 4px solid var(--text);
    }

    .container .content .text-wrapper {
        order: 1;
        width: 85%;
    }
}

@media screen and (max-width: 500px) {
    .container .content .links .link {
        font-size: 25px;
    }

    .container .content .divider {
        border-top: 3px solid var(--text);
    }

    .container .content .text-wrapper {
        width: 90%;
    }

    .container .content .text-wrapper h1 {
        font-size: 40px;
    }

    .container .content .text-wrapper h2 {
        font-size: 25px;
        margin-bottom: .5rem;
    }

    .container .content .text-wrapper p {
        font-size: 20px;
        margin-bottom: .3rem;
    }
}

@media screen and (max-width: 380px) {
    .container .content .links .link {
        font-size: 20px;
    }

    .container .content .text-wrapper h1 {
        font-size: 35px;
    }

    .container .content .text-wrapper h2 {
        font-size: 20px;
    }

    .container .content .text-wrapper p {
        font-size: 18px;
    }
}

@media screen and (max-width: 290px) {
    .container .content .text-wrapper {
        width: 100%;
    }
}