html,
body {
    margin: 0;
    padding: 0;
    height: 100%;
}

body {
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: linear-gradient(0deg, #0e141e, #0c3953);
    background-attachment: fixed;
    color: white;
}

.center {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
}

.logo {
    width: 70%;
    height: 40%;
    object-fit: contain;
    margin-bottom: 80px;
}

h1 {
    font-size: 32px;
    margin: 0;
    font-weight: 600;
    letter-spacing: 1px;
}

.content {
    padding-bottom: 80px;
    max-width: 800px;
    margin: auto;
    padding: 40px 20px;
    line-height: 1.6;
}

footer {
    display: flex;
    justify-content: center;
    gap: 24px;
    padding: 24px;
    position: fixed;
    bottom: 0;
    width: 100%;
}

footer a {
    padding: 12px 32px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 40px;
}

footer a {
    text-decoration: none;
    color: rgba(217, 242, 248, 0.815);
    backdrop-filter: blur(10px);
    font-size: 22px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.2s ease;
}

footer a i {
    font-size: 22px;
}

footer a:hover {
    color: white;
    transform: translateY(-5px);
}