* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    font-family: 'Arial', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    min-height: 100vh;
    
}

.header {
    text-align: center;
    margin-top: 20px;
    
}

.logo {
    width: 100px;
    height: auto;
    margin-top: -30px;
}
.header img{
    width: 100px;
    height: 100px;
    border-radius:100px;
    box-sizing: border-box #d8d7d7;
    margin-left: -20px;

}

h1 {
   
    font-size: 20px;
    padding-inline: 10px;
    margin-right: 20px;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    
    margin-left: 25px;
}

.social {
    width: 300px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    font-size: 18px;
    margin: 10px 0;
    border-radius: 8px;
    transition: background-color 0.3s ease;
    padding: 10px;
}

.social i {
    
    margin-right: 10px;
    font-size: 24px;
    align-items: center;
}

.facebook {
    background-color: #3b5998;
}

.whatsapp {
    background-color: #25D366;
}

.snapchat {
    background-color: #FFFC00;
    color: black;
}

.instagram {
    background-color: #C13584;
}

.tiktok {
    background-color: #000000;
}

footer {
    width: 300px;
    height: 50px;
    text-align: center;
    margin-left: -50px;
    margin-top: 20px;
    align-items: center;

    
}

footer a {
    font-size: 12px;
    text-decoration: none;
    color: #000000;
}

@media (max-width: 600px) {
    .social {
        width: 80%;
    }
}
