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

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

.fundo
{
    width: 100%;
    min-height: 100vh;
    background-image: linear-gradient(170deg, #ff9021 0, #ff8128 12.5%, #ff6d2a 25%, #ff5128 37.5%, #ff2525 50%, #f10024 62.5%, #e60027 75%, #de002d 87.5%, #d90037 100%);
}

.card
{
    position: absolute;
    top: 50%; 
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    transform: translate(0, -50%);
    background: #FFFFFF;
    border-radius: 30px;
    width: 570px;
    min-height: 500px;
    padding: 20px;
    box-sizing: border-box;
    text-align: center;
}

.card .perfil
{
    width: 250px;
    margin: auto;
}

.card h1
{
    font-family: 'Roboto';
    font-style: normal;
    font-weight: bold;
    font-size: 30px;
    line-height: 35px;
    margin-top: 20px;
}

.card h2
{
    font-family: 'Roboto';
    font-style: normal;
    font-weight: bold;
    font-size: 25px;
    line-height: 35px;
    margin-top: 10px;
}


.redes-sociais
{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.redes-sociais .whatsapp, .linkdin, .github
{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
}

.redes-sociais .whatsapp:hover, .linkdin:hover, .github:hover
{
    transform: scale(1.2);
}

.redes-sociais .whatsapp
{
    background: #26CC64;
}

.redes-sociais .linkdin
{
    background: #2664B0;
}

.redes-sociais .github
{
    background: #212121;
}

.redes-sociais i
{
    color: #fff;
    font-size: 30px;
}

.grupo-botao
{
    text-align: center;
    width: 100%;
    margin-top: 40px;
}

.grupo-botao .botao
{
    display: inline-block;
    width: 370px;
    height: 55px;
    background: #F01313;
    color: #fff;
    padding: 15px;
    border-radius: 20px;
    text-decoration: none;
    border: none;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 28px;
    cursor: pointer;
    margin-bottom: 20px;
    transition: 0.5s;
}

.grupo-botao .botao:hover
{
    transform: rotate(3deg);
}

/* Media Querys */

@media screen and (max-width: 600px)
{
    .card 
    {
        width: 450px;
        min-height: auto;
    }

    .grupo-botao .botao 
    {
        width: 100%;
        font-size: 20px;
    }
}
@media screen and (max-width: 475px) 
{
    .card 
    {
        width: 370px;
    }

    .card h1 
    {
        font-size: 25px;
        line-height: 25px;
    }

    .card h2 
    {
        font-size: 20px;
        line-height: 30px;
    }

}
@media screen and (max-width: 414px) 
{
    .card 
    {
        width: 300px;
    }

    .card h1 
    {
        font-size: 22px;
    }

    .card h2 
    {
        font-size: 18px;
    }

    .card .perfil 
    {
        width: 160px;
    }

    .redes-sociais .whatsapp, .linkdin, .github 
    {
        width: 40px;
        height: 40px;
    }

    .redes-sociais i 
    {
        font-size: 25px;
    }

    .grupo-botao .botao 
    {
        padding: 10px;
    }

    .grupo-botao .botao 
    {
        font-size: 16px;
    }
}
@media screen and (max-width: 320px) 
{
    .card 
    {
        width: 260px;
    }

    .card h1 
    {
        font-size: 20px;
        margin-top: 10px;
    }

    .card h2 
    {
        font-size: 17px;
    }

    .card .perfil 
    {
        width: 130px;
    }

    .grupo-botao .botao 
    {
        height: 45px;
    }

    .grupo-botao 
    {
        margin-top: 15px;
    }

    .grupo-botao .botao 
    {
        margin-bottom: 10px;
    }

    .redes-sociais 
    {
        margin-top: 10px;
    }

}
@media screen and (max-width: 280px) {}


