html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    background-image: url('../images/background.jpg');
    background-size: cover;
    background-position: center;
    background-position-y: top;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: #ADADAD;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 500px 20px 20px 20px;
}

h1, h2 {
    color: #ADADAD;
}

.main-text {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

.main-text a {
    color: #ADADAD;
    text-decoration: none;
}

.main-text a:hover {
    text-decoration: underline;
}

footer {
    background-color: #ADADAD;
    color: #000;
    padding: 10px;
    text-align: center;
    width: 100%;
}

.footer-info {
    font-size: 1em;
}

footer a {
    color: #000;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

@media (max-width: 600px) {
    .content {
        padding: 180px 0px 0px 0px;
    }
    .main-text {
        font-size: 12px;
    }
}
