* {
    margin: 0;
    padding: 0;
    color: #929292;
    flex-direction: column;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: 'Quicksand', sans-serif;
}

*::selection {
    background-color: #F9C823;
}

body {
    display: flex;
    background: linear-gradient(166.89deg, #090E1D 0%, #284183 110.14%);
}

main {
    display: flex;
    min-height: 93.4vh;
}

main>.parts {
    display: flex;
    margin: 5% 10%;
    flex-direction: row;
}

main>.parts>.left {
    flex: 0.5;
    display: flex;
}

main>.parts>.left>.logo {
    width: 18em;
}

main>.parts>.left>.title {
    width: 11em;
    font-size: 3em;
    margin-top: 1em;
    color: #FFFFFF;
    font-weight: 600;
}

main>.parts>.left>.date {
    width: 20em;
    margin-top: 2em;
}

main>.parts>.right {
    flex: 0.5;
    display: flex;
}

main>.parts>.right>.text {
    width: 18em;
    max-width: 90%;
    margin-top: 2em;
    color: #F2F2F2;
    font-size: 1.5em;
    align-self: center;
    text-align: center;
}

main>.parts>.right>.button {
    width: 70%;
    margin: auto;
    border: none;
    display: flex;
    padding: 0.8em;
    cursor: pointer;
    font-size: 1.4em;
    color: #284183;
    font-weight: bold;
    align-self: center;
    align-items: center;
    border-radius: 10px;
    text-decoration: none;
    transform: scale(0.95);
    transition-duration: 0.2s;
    background-color: #F9C823;
    transition-timing-function: linear;
    box-shadow: 0px 0px 5px 3px rgba(0, 0, 0, 0.1);
}

main>.parts>.right>.button:hover {
    transform: scale(1);
    box-shadow: 0px 0px 10px 6px rgba(0, 0, 0, 0.1);
}

main>.team {
    display: flex;
    margin-top: 1em;
    align-self: center;
}

main>.team>.title {
    color: #FFFFFF;
    font-weight: 600;
    font-size: 1.5em;
    align-self: center;
}

main>.team>.photos {
    display: flex;
    overflow: auto;
    margin-top: 2em;
    margin-bottom: 4em;
    flex-direction: row;
    scroll-snap-type: x mandatory;
    justify-content: space-between;
}

main>.team>.photos>.photo {
    padding: 0 1em;
    min-width: 266px;
    overflow: hidden;
    position: relative;
    scroll-snap-align: start;
}

main>.team>.photos>.photo>img {
    width: 100%;
}

main>.team>.photos>.photo>.profession {
    left: 50%;
    bottom: 30%;
    color: #EAEAEA;
    font-size: 1.65em;
    text-align: center;
    position: absolute;
    transform: translate(-50%, -50%);
}

main>.team>.photos>.photo>.name {
    left: 50%;
    bottom: 8%;
    width: 100%;
    font-weight: 600;
    color: #EAEAEA;
    font-size: 1.3em;
    text-align: center;
    position: absolute;
    transform: translate(-50%, -50%);
}

footer {
    padding: 1em;
    display: flex;
}

footer>img {
    width: 45%;
    align-self: center;
}

footer>.description {
    margin-top: 2em;
    font-size: 0.8em;
    color: #929292;
    font-weight: bold;
    align-self: center;
    text-align: center;
}

@media screen and (max-width: 900px) {
    main>.parts {
        margin: 0;
        flex-direction: column;
    }

    main>.parts>.left>.logo {
        width: 15em;
        max-width: 80%;
        margin-top: 5em;
        align-self: center;
    }

    main>.parts>.left>.title {
        width: 95%;
        font-size: 2em;
        margin-top: 1em;
        text-align: center;
        align-self: center;
    }

    main>.parts>.left>.date {
        width: 15em;
        max-width: 80%;
        align-self: center;
    }

    main>.parts>.right {
        margin-top: 2em;
    }

    main>.parts>.right>.button {
        width: 85%;
        margin-top: 2em;
        margin-bottom: 1em;
    }

    main>.team {
        width: 100%;
    }

    main>.team>.photos>.photo {
        padding: 0 0.6em;
    }

    footer>img {
        width: 100%;
    }
}