/* Responsive font sizes for best practice readability */


@import url('https://fonts.googleapis.com/css2?family=Nosifer');


html {
    height: 100%;
}
body {
    position: relative;
    margin: 0;
    padding: 0;
    font: 1em 'Verdana', sans-serif;
    background-color: #000;
    background-image: url('../images/background.jpg');
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    color: #DDD;
}

/* Responsive image class for main content images */
.responsive-img {
    width: 100%;
    max-width: 350px;
    clear: both;
    display: block;
    padding-top: 20px;
    position: relative;
}

.responsive-img:hover{
    cursor: zoom-in;
}

.page-wrapper {
    position: unset;
    width: 1024px;
    margin: 0 auto;
    background: #000;
    border: 1px solid #222

}

header {
    margin-top: 0;
    text-align: center;
    background-image: url('../images/header_image.jpg');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    height: 908px;
}
header h1 {
    margin: 0;
    margin-left: -10000px;
    z-index: -1;
}

.infotag {
    width: fit-content;
    margin: 0 auto;
    padding: 15px;
    margin-bottom: 15px;
    border: thin solid #555;
    text-align: center;
    font-weight: normal;
    font-size: 1.2em;
}

main {
    
    padding: 30px;
    min-height: 400px;
}

main h2 {
    font-family: "Nosifer", Verdana, system-ui, sans-serif;
    font-size: 2em;
    margin-top: 0;
    margin-bottom: 0;
    color: #02e300;
    
    text-shadow: 
    -4px -3px 4px rgba(255, 255, 255, 0.3),
    4px 3px 6px rgba(2, 227, 0, 0.7);
}

main p {
    margin-bottom: 30px;
}

footer {
    text-align: center;
    padding: 10px;
}

/* Responsive header height for smaller screens */
@media (max-width: 1023px) {
    .page-wrapper {
        position: relative;
        display: block;
        width: 100%;
        padding: 0 0px;
        margin: 0;
        border: none;
    }
    .infotag {
        width: 100%;
        margin: 0;
        margin-bottom: 15px;
        padding: 15px 0;
        border-left: none;
        border-right: none;
    }
    header {
        height: calc(100vw * 0.887);
        max-height: 908px;
    }
}

@media (max-width: 600px) {
    main h2 {
        font-size: 1.4em;
    }
}
