#about{
    overflow: hidden;
    color: #151515;
    max-width: 1280px;
    margin: auto;
    padding-bottom: 50px;
}

.about-section{
    max-width: 768px;
    margin-left: auto;
    margin-right: auto;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap-reverse;
    padding-top: 40px;
}

.about-logo-container > img{
    max-width: 100%;
}

.about-text-container > div{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    gap: 20px;
    flex-wrap: wrap;
}

.about-text-container > h1{
    font-family: 'Gabarito';
    font-size: 4rem;
    letter-spacing: -2px;
    word-spacing: -5px;
    line-height: 1;
    padding-left: 20px;
}

.about-text-container > div > p{
    justify-self: start;
    font-size: 0.9rem;
    font-family: 'Quicksand';
    max-width: 45ch;
    text-align: justify;
    font-weight: 600;
}

.about-text-container > h2{
    font-size: 5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-stretch: narrower;
    height: min-content;
    color: #121212;
}

.about-text-container > div > button{
    height: 35px;
    width: 150px;
    border-radius: 0px;
    outline: 2px solid #121212;
    border: none;
    background-color: #ffcc00;
    font-family: 'Quicksand';
    font-weight: 800;
    transition: background-color 50ms ease-in;
    cursor: pointer;
    border-radius: 5px;
    justify-self: end;
}

.about-text-container > div > button:hover{
    border: none;
    background-color: #121212;
    color: #fff;
}

.about-text-container > div > button:active{
    outline-offset: 1px;
    border: none;
}
  
@media (max-width: 425px){
    .about-text-container > h1{
        font-size: 3rem;
    }
    header .contact-button{
        width: 70px;
        height: 30px;
        font-size: 10px;
    }
    .menu-button{
        width: 30px;
        height: 30px;
    }
    .header-logo{
        justify-self: flex-start;
    }
}

@media (max-width: 768px){
    .about-logo-container > img{
        max-width: 50%;
    }
}

@media (min-width: 768px){
    .menu-button{
        display: none;
    }
}