body {
    background-image: url(assets/bg.png);
    background-size: cover; 
    background-position: center; 
    background-attachment: fixed; 
    font-family: Arial, sans-serif;
    text-align: center;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    margin: 0;
}

body, html {
    overflow: hidden; 
    height: 100%; 
    margin: 0;
}

body h1 {
    margin-bottom: 20px;
    color: rgb(226, 226, 226);
}

.input-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 9px;
}

input {
    padding: 10px;
    width: 90%;
    max-width: 500px;
    border: 2px solid black;
    background-color: silver;
    color: black;
    outline: none;
}

input::placeholder {
    color: black; 
    opacity: 1; 
}

input:focus {
    background-color: rgb(216, 216, 216);
    color: black;
    outline: none;
}

button {
    padding: 10px 20px;
    cursor: pointer;
    margin-left: 10px;
    border: 2px solid black;
    background-color: blanchedalmond;
}

button:hover {
    background-color: burlywood;
}

button[onclick="reloadPage()"] {
    background-color: rgb(206, 206, 206);
}

button[onclick="reloadPage()"]:hover {
    background-color: rgb(226, 226, 226);
}

#downloadButton {
    background-color: rgb(206, 206, 206);; 
}

#downloadButton:hover {
    background-color: rgb(226, 226, 226);
}

img {
    margin-top: 20px;
    max-width: 100%;
    height: auto;
    border: 10px solid rgb(150, 150, 150);
}

footer p {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgb(226, 226, 226);
}

@media (min-width: 1200px) { 
    body {
        font-size: 24px;
    }
    input, button {
        font-size: 20px;
    }
}

@media (min-width: 1024px) and (max-width: 1199px) { 
    body {
        font-size: 20px;
    }
    input, button {
        font-size: 18px;
    }
}

@media (min-width: 768px) and (max-width: 1023px) { 
    body {
        font-size: 18px;
    }
    input, button {
        font-size: 16px;
    }
}

@media (max-width: 767px) { 
    body {
        font-size: 16px;
    }
    input, button {
        font-size: 14px;
    }
}
