body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(to bottom, #333333, #1a1a1a);
    color: #fff;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    justify-content: space-between; /* Adjusted to space-between */
    align-items: center;
}

h1 {
    font-size: 2em;
    margin-top: 90px; /* Adjusted the margin-top for spacing */
}

footer {
    text-align: center;
    padding: 20px;
}

footer a {
    color: #fff;
    text-decoration: underline;
    transition: all 0.2s linear;
}

a:hover {
    color:#dbdbdb
}