*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
}

body{
    background-color: rgb(24, 22, 41);
    height: 120vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

main{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.caixa-1{
    display: flex;
    align-items: center;
    justify-content: center;
}

.caixa-img{
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 40px 0;
}

.img1{
    width: 120px; 
    height: 120px; 
    border-radius: 50%; 
    border: 1px solid #3b0261; 
    object-fit: cover;
    margin-bottom: 10px;
}


.textos{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 20px;

    h1{
        color: white;
        margin-bottom: 10px
    };
    p{
        color: white;
    }; 
     
}

.caixa-icons{
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
    gap: 10px;

    svg:hover{
        width: 52px;
        height: 52px;
    }
}


.caixa-botoes{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 40px;

    button{
        border: none;
        width: 400px;
        margin-top: 15px ;
        padding: 20px;
        border-radius: 30px;
        border: 1px solid white;
        background-color: rgb(36, 33, 61);;

        font-size: 15px;
        font-weight: 400;
        color: white;

        cursor: pointer;
        transition: background-color 0.5s ease;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);

    }

    button:hover{
        background-color: white;
        color: black;
        font-weight: 500;
        font-size: 18px;
    }
}

footer{
    p{
        color: white;
        font-weight: bolder;
        font-size: 10px;
        margin-bottom: 20px;
    }

}

@media (max-width: 1024px){
    body{
        height: 100vh;
    }
}


@media (max-width: 768px){
    body{
        height: 100vh;

    }
    .caixa-botoes{
        button{
            width: 400px;
        }
    }
}

@media (max-width: 480px){
    body{
        height: 100vh;
        
    }

    .caixa-botoes{
        button{
            width: 350px;
            min-width: 350px;
        }
    }
}

