@import url('https://api.fonts.coollabs.io/css2?family=Inter:wght@400;500;700&display=swap');


html{
    color-scheme: dark;
}

body{
    background-color: #262626;
    font-family: 'Inter', sans-serif;

}


div.wrapper{
    display: flex;
    justify-content: center; /* Centers horizontally */
    align-items: center; /* Centers vertically */
    height: 100vh;
    height: 100dvh;
    
}

.logo{
    width: 100%;

}

.logo img{
    max-width:min(150px, 50vw);
    margin-inline: auto;
    transition: 300ms all ease-out;
}

.logo img:hover{
    transform: scale(0.95);
    opacity:85%;
}

.titulo{
    text-align: center;
    padding-bottom:30px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.titulo h1{
    font-size: 2rem;
    font-weight: 500;
}

.titulo h2{
    font-size: 1.1rem;
    opacity: 40%;
    line-height: 1.2;
}


div.social{
    display:flex;
    gap:10px;
    justify-content:center;
    margin-top:25px;
}

div.social a{
    aspect-ratio: 1;
    padding:10px;
    border-radius: 50%;
    opacity:25%;
    transform: scale(1);
    transition: 250ms all ease-in-out;
}

div.social a img{
    width:25px;
}


div.social a:hover{
    background-color: #C8282D;
    opacity: 100%;
    transform: scale(1.1);

}
