html {
    min-height: 100%;
}
body {
    font-family: Arial, sans-serif;
    background: linear-gradient(to bottom, #48A1BE, #091F8D);
    color: #fff;
    text-align: center;
    margin: 0;
    min-height: 100%;
}

header {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

header .logo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
}

header h1 {
    margin: 10px 0;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.social-icons img {
    width: 30px;
    height: 30px;
}

.button-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

.button {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid #fff;
    border-radius: 25px;
    padding: 10px 20px;
    text-decoration: none;
    color: #fff;
    width: 300px;
    transition: background 0.3s, transform 0.3s;
}

.button img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.button span {
    font-size: 18px;
}

.button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}
