@import url('https://fonts.googleapis.com/css2?family=Varela+Round&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Hind+Siliguri:wght@300;400;500;600;700&display=swap');



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
}

body, html {
    overflow-x: hidden;
    background-image: url(/src/images/9495652.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-blend-mode: overlay;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

.cabecalho {
    background-color: rgb(38, 38, 38);
}

.about-section {
    padding: 20px;
    
}

.about-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-image img {
    width: 100%;
    max-width: 350px;
    border-radius: 66% 44%;
    margin-top: 30px;
    border: 4px solid #ff7f2a;
    margin-bottom: 20px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.about-content {
    text-align: center;
}

.about-content h2 {
    margin-top: 52px;
    font-size: 2.2em;
    margin-bottom: 20px;
    color: #ff7f2a;
}

.about-content p {
    font-size: 1.1em;
    line-height: 1.6;
    color: rgb(54, 54, 54);
    margin-bottom: 20px;
}

@media screen and (min-width: 700px) {
    .about-container {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .about-image img {
        max-width: 400px;
        margin-right: 40px;
        margin-bottom: 0;
        margin-top: 70px;
    }

    .about-content {
        max-width: 600px;
        text-align: left;
    }

    .about-content h2 {
        font-size: 2.5em;
    }

    .about-content p {
        font-size: 1.2em;
        color: rgb(63, 59, 59);
    }
}


footer {
    margin-top: 500px;
}

/* Ajustes para telas menores */
/* @media (min-width: 414px) and (max-width: 828px) {
    .about-container {
        flex-direction: column;
    }

    .about-image img {
        max-width: 400px;
        margin-top: 900px;
    }

    .about-content h2 {
        font-size: 1.9em;
    }

    .about-content p {
        font-size: 1.5em;
        color: white;
        
    }

    body, html{
        background-size: cover;
    background-repeat: no-repeat;
    background-blend-mode: overlay;
    background-image: url(/src/images/v915-techi-056.jpg);
    
    
    } */
