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


body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(to bottom right, #f8f8f8, #dce1e8);
    color: #1a1a1a;
    text-align: center;
    padding: 20px;
    min-height: 100vh;
}

.logo {
    margin: 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo .img-logo {
    margin: 1rem;
}

h1 {
    color: #d62828;
    font-size: 2rem;
}

h2 {
    color: #003566;
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.button-container {
    margin-top: -2rem;
    display: grid;
    gap: 30px;
    max-width: 30rem;
    margin: 6rem auto;
    grid-template-columns: 1fr;

}

.social-button {
    background: #1a1a1a;
    color: #fff;
    padding: 20px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    width: 80%;
    margin: 0.25rem auto;
}

.social-button:hover {
    transform: scale(1.05);
    background: #333;
}

.social-button i {
    margin-right: 8px;
}

.contact {
    font-size: 0.95rem;
}

.contact p {
    margin: 5px 0;
}

.contact i {
    margin-right: 6px;
}

.instagram {
    background-color: #202759;
}

.instagram:hover {
    background-color: #101325;
}

.facebook {
    background-color: #1877F2;
}

.facebook:hover {
    background-color: #2c46da;
}

.website {
    background-color: #6e7183;
    
}

.website:hover {
    background-color: #595b63;
}

.reviews {
    background-color: #D52229;
}

.reviews:hover {
    background-color: #9c0707;
}

.phone-link {
    color: #1c1b1a;
    text-decoration: none;
    font-size: 1rem;
}

.phone-link:hover {
    color: #D52229;
}



@media (max-width: 500px) {
    .button-container {
        margin: 3rem auto;
        gap: 20px;
    }
}