html {
    scroll-behavior: smooth;
}

.container {
    width: 100vw;
    height: 100vh;

    margin: 0;
    padding: 50px;

    display: flex;
    flex-direction: column;
}

.firstContainer {
    height: 90vh;
    flex-direction: row;
}

.containerBlue {
    background-color: var(--white3);
}

#about {
    height: min-content;
}

.containerTitle {
    font-size: 3rem;
    font-weight: bold;

    color: var(--blueDark);

    margin-bottom: 15px;

    padding: 4px 0 4px 0;
}

.containerContent {
    font-size: 1.2rem;
    color: var(--textColor);

    margin-bottom: 30px;

    line-height: 30px;

    width: 100%;

    display: flex;
    justify-content: space-between;

    padding-left: 8px;
    padding-right: 8px;
}

.containerContentLeft {
    width: 45%;
}

.containerContentRight {
    width: 45%;
}

body {
    margin: 0;
    padding: 0;
}

.containerLeft {
    width: 40%;
    height: 100%;

    margin-right: 5%;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding-left: 5%;
    padding-bottom: 10%;
}

.containerLeftTitle {
    font-size: 3.5rem;

    margin-bottom: 20px;

    color: var(--textColor);

    font-weight: bold;

    padding: 4px 0 4px 0;
}

.containerLeftSubtitle {
    color: var(--textColor);

    margin-bottom: 30px;

    font-size: 1.5rem;

    font-weight: bold;

    padding: 2px 0 2px 0;
}

.containerLeftButton {
    width: max-content;

    font-size: 18px;
    font-weight: 500;

    padding: 15px;

    border-radius: 15px;

    background-color: var(--blue3);

    transition: all 0.2s ease;

    color: var(--blue1);

    text-decoration: none;
}

.containerLeftButton:hover {
    background-color: var(--white2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.containerLeftLinks {
    display: flex;
    flex-direction: column;

    padding: 30px 20px 20px;
}

.containerLeftLink {
    text-decoration: none;
    color: var(--blueDark);

    width: max-content;

    font-size: 22px;

    margin-bottom: 15px;

    transition: all 0.2s ease;

    display: flex;
    align-items: center;

    font-weight: 600;
}

.containerLeftLinkIcon {
    width: 30px;
}

.containerRight {
    width: 50%;
    height: 100%;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.containerLogo {
    font-size: 2em;

    width: 100%;
    height: 100%;

    margin-right: -15%;

    display: flex;
    align-items: center;
    justify-content: center;
}

.containerLogo img {
    width: 85%;
    max-width: 700px;
}

@media (max-width: 800px) {
    .container {
        padding: 4vw 2vw;
        height: min-content !important;

        flex-direction: column;
    }

    .containerTitle, .containerLeftTitle {
        font-size: 2rem;
        text-align: center;
        padding: 4px 0 4px 0;
    }

    .mainTitle {
        font-size: 2.5rem;
        text-align: center;
    }

    .containerLeftSubtitle {
        font-size: 1.2rem;
        text-align: center;
        padding: 2px 0 2px 0;
    }

    .containerLeftButton {
        font-size: 1.1rem;
        padding: 10px 18px;
        border-radius: 8px;
        margin: 0 auto 16px auto;
        display: block;
    }

    .containerLeftLinks {
        padding: 10px 0 0 0;
        align-items: center;
    }

    .containerLeftLink {
        font-size: 1.1rem;
        margin-bottom: 10px;
        justify-content: center;
    }
    .containerLogo {
        margin: 0 auto;
        width: 90vw;
        height: auto;
        justify-content: center;
    }

    .containerLogo img {
        width: 90vw;
        max-width: 275px;
        margin: 0 auto;
        margin-top: 30px;
    }

    .containerContent {
        font-size: 0.98rem;
        gap: 8px;
        padding: 0 2px;
        padding-left: 2px;
        padding-right: 2px;

        flex-direction: column;
    }

    .containerContentLeft, .containerContentRight {
        width: 100%;
        text-align: center;
    }

    .containerLeft, .containerRight {
        width: 100%;
        padding-left: 0;
        padding-bottom: 0;
        margin-right: 0;
        margin-bottom: 0;
        align-items: center;
        justify-content: center;
    }
}


footer {
    width: 100vw;

    font-size: 1.1em;

    padding: 20px;

    background-color: var(--blue2);
    color: var(--white2)
}