body {
    font-family: Arial, sans-serif;
    background-color: #000; 
    color: #f0f0f0; 
    margin: 100; 
    padding: 0; 
    padding-top: constant(safe-area-inset-top); 
    padding-bottom: constant(safe-area-inset-bottom);
    padding-left: constant(safe-area-inset-left);
    padding-right: constant(safe-area-inset-right); 
}

header {
    background-color: #000; 
    color: #fff;
    height: 201px; 
    display: flex;
    align-items: center;
    justify-content: center;
}

.normal-tmp-headers nav {
    margin-top: 10px;
    text-align: center;
}

.normal-tmp-headers h1 a {
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-size: 2em;
    margin-top: 70px;
    margin-bottom: 10px;
    text-decoration: none;
    color: #555;
    border: none;
    border-top: 300px;
}

.normal-tmp-headers h2 {
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-size: 1.5em;
    color:inherit;
    margin-top: 20px;
    margin-left: 15px;
    margin-right: 15px;
}

.button-container a {
    text-decoration: none;
    color: #000;
    border: none;
    border-top: 300px;
}

.normal-tmp-headers a:hover {
    border: 5px #555 solid;
}

img {
    max-height: 270px; 
}

main {
    padding: 20px;
}

.button-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.button {
    display: block;
    width: 80%; 
    max-width: 900px; 
    padding: 25px; /* Decreased padding for smaller buttons */
    margin: 10px;
    text-align: center;
    background-color: #555; 
    color: #000;
    text-decoration: none;
    border: none;
    border-radius: 15px; 
    transition: background-color 0.3s;
    font-size: 20px; /* Decreased font size for smaller buttons */
}

.button:hover {
    background-color: #333; 
}

@media screen and (max-width: 768px) {
    header {
        height: 135px; 
    }
    .normal-tmp-headers h1 {
        font-size: 1.7em;
    }
    .normal-tmp-headers h2 {
        font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
        font-size: 1.5em;
    }

    .normal-tmp-headers a:hover {
        border: 2px #555 solid;
    }
}

@media screen and (max-width: 460px) {
    .normal-tmp-headers h1 a {
        margin-top: 20px; /* Decreased margin-top for smaller screens */
        font-size: 1.4em; /* Further reduce font size */
    }

    .normal-tmp-headers h1 {
        font-size: 1.4em; /* Adjusted font size for smaller screens */
    }

    header {
        height: 120px; /* Adjust header height for smaller screens */
    }

    .normal-tmp-headers h2 {
        font-size: 1.3em; /* Adjust h2 font size for smaller screens */
        margin-top: 10px;
    }

    .button-container a {
        font-size: 18px; /* Reduce font size for buttons on small screens */
    }
}
