html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

@media screen and (min-width: 1200px) {

    body {
    background-color: rgb(0, 0, 0);
    display: grid;
    z-index: 1;
    overflow-x: hidden;
    }
    main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 60px 1fr 1fr;
    background-color: black;
    z-index: 2;
    width: 1200px;
    padding-top: 20px;
    margin: auto;
    margin-top: 75px;
    }
    article {
        display: block;
    }

    header {
    padding-left: 10px;
    grid-row: 1/2;
    grid-column: 1/4;
    display: grid;
    grid-template-columns: 350px 1fr;
    background-color: black;
    width: 100%;
    border: 3px red solid;
    z-index: 4;
    position: fixed;
    height: 75px;
    }

    .text {
    grid-column: 2/3;
    font-size: 20px;
    padding: 10px;
    width: 100%;
    margin: auto;
    }

    ul {
    display: flex;
    justify-content: space-around;
    text-align: center;
    }

    h1 {
    font-size: 30px;
    font-family: "creepster";
    padding-left: 10px;
    color: red;
    }

    .headtext {
    text-decoration: none; /* Remove the default underline */
    position: relative;
    color: red;
    transition: color 0.3s; /* Add a transition for smooth color change */
    font-family: "creepster";
    vertical-align: middle;
    }

    .headtext::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: orangered; /* Change this to your desired underline color */
    height: 2px; /* Adjust the underline height as needed */
    transform: scaleX(0); /* Initially, set the scale to zero to hide the underline */
    transform-origin: 50% 100%;
    transition: transform 0.3s ease; /* Add a transition for smooth animation */
    }

    .headtext:hover {
    color: #cf2917; /* Change the text color on hover if needed */
    cursor: pointer;
    }

    .headtext:hover::before {
    transform: scaleX(1); /* When hovering, scale the underline to 100% width */
    }


    h3 {
    color: aliceblue;
    font-family: "creepster";
    font-size: 55px;
    z-index: 3;
    text-align: center;
    }

    #Logo {
    width: 30px;
    height: auto;
    }

    #title {
    display: flex;
    justify-content: space-around;
    padding-left: 5px;
    margin: auto;
    grid-column: 1/2;
    }

    #zombe {
        grid-column: 1/2;
        grid-row: 1/3;
        width: 550px;
        border-radius: 50px;
        padding-top: 30px;
    }

    #zombee {
        grid-column: 1/2;
        grid-row: 1/3;
        width: 550px;
        border-radius: 50px;
        padding-top: 30px;
        visibility: hidden;
    }

    #zombeee {
        grid-column: 1/2;
        grid-row: 1/3;
        width: 550px;
        border-radius: 50px;
        padding-top: 30px;
        visibility: hidden;
    }

    .select {
        text-decoration: none; /* Remove the default underline */
        position: relative;
        color: red;
        transition: color 0.3s; /* Add a transition for smooth color change */
        font-family: "creepster";
        vertical-align: middle;
        font-size: 30px;
        top: 30px;
    }
    
    .select::before {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: orangered; /* Change this to your desired underline color */
        height: 2px; /* Adjust the underline height as needed */
        transform: scaleX(0); /* Initially, set the scale to zero to hide the underline */
        transform-origin: 50% 100%;
        transition: transform 0.3s ease; /* Add a transition for smooth animation */
    }
    
    .select:hover {
        color: #cf2917; /* Change the text color on hover if needed */
        cursor: pointer;
    }
    
    .select:hover::before {
        transform: scaleX(1); /* When hovering, scale the underline to 100% width */
    }

    p {
        padding: 20px;
        display: none;
        color: white;
        font-size: 17px;
        padding-top: 10px;
        grid-column: 2/3;
        grid-row: 2/4;
    }

    #paragraph1 {
        display: block;
    }

}

@media screen and (min-width: 600px) and (max-width: 1199px) {

    body {
    background-color: rgb(0, 0, 0);
    display: grid;
    z-index: 1;
    overflow-x: hidden;
    }
    main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 60px 1fr 1fr;
    background-color: rgb(0, 0, 0);
    z-index: 2;
    width: 1000px;
    padding-top: 20px;
    margin: auto;
    margin-top: 75px;
    }
    article {
        display: block;
    }

    header {
    padding-left: 10px;
    grid-row: 1/2;
    grid-column: 1/4;
    display: grid;
    grid-template-columns: 350px 1fr;
    background-color: black;
    width: 100%;
    border: 3px red solid;
    z-index: 4;
    position: fixed;
    height: 75px;
    }

    .text {
    grid-column: 2/3;
    font-size: 20px;
    padding: 10px;
    width: 100%;
    margin: auto;
    }

    ul {
    display: flex;
    justify-content: space-around;
    text-align: center;
    }

    h1 {
    font-size: 30px;
    font-family: "creepster";
    padding-left: 10px;
    color: red;
    }

    .headtext {
    text-decoration: none; /* Remove the default underline */
    position: relative;
    color: red;
    transition: color 0.3s; /* Add a transition for smooth color change */
    font-family: "creepster";
    vertical-align: middle;
    }

    .headtext::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: orangered; /* Change this to your desired underline color */
    height: 2px; /* Adjust the underline height as needed */
    transform: scaleX(0); /* Initially, set the scale to zero to hide the underline */
    transform-origin: 50% 100%;
    transition: transform 0.3s ease; /* Add a transition for smooth animation */
    }

    .headtext:hover {
    color: #cf2917; /* Change the text color on hover if needed */
    cursor: pointer;
    }

    .headtext:hover::before {
    transform: scaleX(1); /* When hovering, scale the underline to 100% width */
    }


    h3 {
    color: aliceblue;
    font-family: "creepster";
    font-size: 55px;
    z-index: 3;
    text-align: center;
    }

    #Logo {
    width: 30px;
    height: auto;
    }

    #title {
    display: flex;
    justify-content: space-around;
    padding-left: 5px;
    margin: auto;
    grid-column: 1/2;
    }

    #zombe {
        grid-column: 1/2;
        grid-row: 1/3;
        width: 550px;
        border-radius: 50px;
        padding-top: 30px;
    }

    #zombee {
        grid-column: 1/2;
        grid-row: 1/3;
        width: 550px;
        border-radius: 50px;
        padding-top: 30px;
        visibility: hidden;
    }

    #zombeee {
        grid-column: 1/2;
        grid-row: 1/3;
        width: 550px;
        border-radius: 50px;
        padding-top: 30px;
        visibility: hidden;
    }

    .select {
        text-decoration: none; /* Remove the default underline */
        position: relative;
        color: red;
        transition: color 0.3s; /* Add a transition for smooth color change */
        font-family: "creepster";
        vertical-align: middle;
        font-size: 30px;
        top: 30px;
    }
    
    .select::before {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: orangered; /* Change this to your desired underline color */
        height: 2px; /* Adjust the underline height as needed */
        transform: scaleX(0); /* Initially, set the scale to zero to hide the underline */
        transform-origin: 50% 100%;
        transition: transform 0.3s ease; /* Add a transition for smooth animation */
    }
    
    .select:hover {
        color: #cf2917; /* Change the text color on hover if needed */
        cursor: pointer;
    }
    
    .select:hover::before {
        transform: scaleX(1); /* When hovering, scale the underline to 100% width */
    }

    p {
        padding: 20px;
        display: none;
        color: white;
        font-size: 17px;
        padding-top: 10px;
        grid-column: 2/3;
        grid-row: 2/4;
    }

    #paragraph1 {
        display: block;
    }

}

@media screen and (max-width: 599px) {

    body {
    background-color: rgb(0, 0, 0);
    display: grid;
    z-index: 1;
    overflow-x: hidden;
    }
    main {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 530px 60px 1fr 1fr;
    background-color: rgb(0, 0, 0);
    z-index: 2;
    width: 599px;
    padding-top: 20px;
    margin: auto;
    margin-top: 75px;
    }
    article {
        display: block;
    }

    header {
    padding-left: 10px;
    grid-row: 1/2;
    grid-column: 1/4;
    display: grid;
    grid-template-columns: 140px 1fr;
    background-color: black;
    width: 600px;
    border: 3px red solid;
    z-index: 4;
    position: fixed;
    height: 75px;
    }

    .text {
    grid-column: 2/3;
    font-size: 16px;
    padding: 5px;
    width: 85%;
    margin: auto;
    }

    ul {
    display: flex;
    justify-content: space-around;
    text-align: center;
    }

    h1 {
    font-size: 20px;
    font-family: "creepster";
    padding-left: 10px;
    color: red;
    }

    .headtext {
    text-decoration: none; /* Remove the default underline */
    position: relative;
    color: red;
    transition: color 0.3s; /* Add a transition for smooth color change */
    font-family: "creepster";
    vertical-align: middle;
    }

    .headtext::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: orangered; /* Change this to your desired underline color */
    height: 2px; /* Adjust the underline height as needed */
    transform: scaleX(0); /* Initially, set the scale to zero to hide the underline */
    transform-origin: 50% 100%;
    transition: transform 0.3s ease; /* Add a transition for smooth animation */
    }

    .headtext:hover {
    color: #cf2917; /* Change the text color on hover if needed */
    cursor: pointer;
    }

    .headtext:hover::before {
    transform: scaleX(1); /* When hovering, scale the underline to 100% width */
    }


    h3 {
    color: aliceblue;
    font-family: "creepster";
    font-size: 55px;
    z-index: 3;
    text-align: center;
    }

    #Logo {
    width: 20px;
    height: auto;
    }

    #title {
    display: flex;
    justify-content: space-around;
    padding-left: 5px;
    margin: auto;
    grid-column: 1/2;
    }

    #zombe {
        grid-row: 1/2;
        width: 500px;
        height: auto;
        border-radius: 50px;
        padding-top: 30px;
        grid-column: 1/2;
        margin: auto;
    }

    #zombee {
        grid-row: 1/2;
        width: 500px;
        height: auto;
        border-radius: 50px;
        padding-top: 30px;
        visibility: hidden;
        grid-column: 1/2;
        margin: auto;
    }

    #zombeee {
        grid-row: 1/2;
        width: 500px;
        height: auto;
        border-radius: 50px;
        padding-top: 30px;
        visibility: hidden;
        grid-column: 1/2;
        margin: auto;
    }

    .select {
        text-decoration: none; /* Remove the default underline */
        position: relative;
        color: red;
        transition: color 0.3s; /* Add a transition for smooth color change */
        font-family: "creepster";
        vertical-align: middle;
        font-size: 30px;
        top: 30px;
        grid-row: 2/3;
    }
    
    .select::before {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: orangered; /* Change this to your desired underline color */
        height: 2px; /* Adjust the underline height as needed */
        transform: scaleX(0); /* Initially, set the scale to zero to hide the underline */
        transform-origin: 50% 100%;
        transition: transform 0.3s ease; /* Add a transition for smooth animation */
    }
    
    .select:hover {
        color: #cf2917; /* Change the text color on hover if needed */
        cursor: pointer;
    }
    
    .select:hover::before {
        transform: scaleX(1); /* When hovering, scale the underline to 100% width */
    }

    p {
        padding: 20px;
        display: none;
        color: white;
        font-size: 17px;
        padding: 20px;
        grid-row: 3/5;
    }

    #paragraph1 {
        display: block;
    }

}