* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}

.container {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 90%;
    max-width: 400px;
}

.logo-container {
    margin-bottom: 20px;
}

.logo {
    width: 100px;
    height: auto;
    border-radius: 50%;
}

.title {
    font-size: 24px;
    margin-bottom: 20px;
}

.icon-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.icon-links i {
    font-size: 24px;
    color: #333;
    transition: transform 0.3s ease; /* Add smooth transition for zoom effect */
}

.icon-links i:hover {
    transform: scale(1.2); /* Zoom in on hover */
}

.button-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 25px;
    border-radius: 30px; /* Subtle rounding similar to the image */
    text-decoration: none;
    color: #333;
    font-size: 16px;
    background-color: #fff;
    border: 3px solid transparent;
    border-image-slice: 1;
    border-image-source: linear-gradient(to right, #ff7e5f, #feb47b);
    transition: transform 0.3s ease, border 0.3s ease, background-color 0.3s ease;
}

.button i {
    margin-right: 10px;
    color: #333;
}

.button:hover {
    transform: scale(0.95); /* Zoom out effect */
    background-color: #f9f9f9;
    border-image-source: linear-gradient(to right, #43cea2, #185a9d); /* Change gradient on hover */
}

@media (max-width: 768px) {
    .container {
        width: 95%;
    }
}
