/* Main */

input:focus-visible, textarea:focus-visible {
    outline: 2px solid var(--dark-white) !important;

    transition: outline ease-in-out .25s;
}

#content {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Platforms */

.spacer {
    height: 48px;
}

p:first-of-type, p:last-of-type {
    font-family: 'Poppins';
    font-weight: 600;
}

#about-wrapper {
    /* background-color: var(--dark-black-8b); */
    /* border: 1px solid var(--dark-white-6b); */
    max-width: 75vw;
    /* display: flex; */
    justify-content: center;
    align-items: center;
    background-color: var(--dark-black-0b);
}

#about-images {
    margin: 16px;
    width: 100%;
    display: flex;
    justify-content: space-around;
}

#about-images > img {
    height: 128px;
    width: fit-content;
}

.about-photo {
    width: 256px;
    height: 256px;
    object-fit: cover;
    object-position: 0px -72px;
    border: 1px solid var(--dark-white-6b);
}

#about-gauche {
    margin-right: 32px;
}

#about-droit {
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    text-align: left;
    padding-top: 8px;
    padding-bottom: 32px;
    margin-left: 32px;
    /* background-color: var(--dark-black-8b); */
    /* border: 1px solid var(--dark-white-6b); */
}

#about-diviseur {
    border: 1px solid var(--dark-white);
    border-width: 1px;
    height: 384px;
}

h3 {
    color: var(--dark-accent-tertiary);
    margin: 0 !important;
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
}

h3, p {
    padding-left: 0px;
}

/* Media Queries */

@media screen and (max-width: 1300px) {
    p {
        font-size: 16px;
    }
}

@media screen and (max-width: 1200px) {
    #about-wrapper {
        max-width: 95vw;
    }

    p {
        font-size: 16px;
    }
}

@media screen and (max-width: 800px) {
    #about-images > img {
        height: 92px;
    }
}

@media screen and (max-width: 600px) {
    #about-images > img {
        height: 80px;
    }
    
    p {
        font-size: 12px;
        padding-top: 0;
        padding-bottom: 0;
        align-items: center;
    }

    br {
        display: none;
    }

    #about-droit {
        margin-left: 12px;
    }
}

@media screen and (max-width: 500px) {
    #about-images > img {
        height: 60px;
    }
}

@media screen and (max-width: 400px) {
    #about-images > img {
        height: 50px;
    }
}