#top {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    height: 100px;
    width: auto;
    padding-bottom: 10px;
}

nav {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    height: 25px;
    width: 100%;
    align-items: flex-end;
}

nav a {
    text-decoration: none;
    color: black;
    background-color: #1668a5;
    width: 25%;
    height: 35px;
    font-family: "Comic Sans MS", "Comic Sans", cursive;
    display: flex;
    justify-content: center;
    font-size: 30px;
    border: solid black 2px;
    align-items: flex-end;
}

nav a:hover {
    text-decoration: none;
    color: black;
    width: 25%;
    height: 35px;
    background-color: #1e8bdf;
    font-family: "Comic Sans MS", "Comic Sans", cursive;
    display: flex;
    justify-content: center;
    font-size: 30px;
    border: solid black 2px;
    align-items: flex-end;
}

#search {
    border: 5px solid #1668a5;
    border-radius: 35px;
}

#searchtext,
#searchsubmit {
    border: none;
    margin: 0;
    background: none;
    color: gray;
    padding-top: 5px;
    padding-bottom: 5px;
    font-family: "Comic Sans MS", "Comic Sans", cursive;
    font-size: 20px;
}

#searchtext {
    background-color: white;
    border-bottom-left-radius: 25vw;
    border-top-left-radius: 25vw;
}

#searchsubmit {
    color: black;
    background-color: #1668a5;
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
}

#rockhero {
    height: 300px;
    width: 100%;
}

main {
    display: grid;
    grid-template-columns: minmax(0px, 1fr) repeat(10, minmax(0, 100px)) minmax(0px, 1fr);
    grid-template-rows: repeat(8, minmax(100px, 0));
}

#empty {
    grid-area: 2/3/8/11;
    display: flex;
    background-color: #1668a5;
    border: solid 5px black;
    border-radius: 25px;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    font-family: "Comic Sans MS", "Comic Sans", cursive;
}

#empty h1 {
    font-size: 60px;
}

#empty p {
    font-size: 40px;
    text-align: center;
    padding: 5px;
}

footer {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: flex-end;
    background-color: gray;
    border: solid 2px black;
}

#news {
    display: flex;
    flex-direction: column;
    font-family: "Comic Sans MS", "Comic Sans", cursive;
    font-size: 25px;
    padding-bottom: 30px;
}

#newsjoin {
    display: flex;
}

#menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
}

#menu h3 {
    font-family: "Comic Sans MS", "Comic Sans", cursive;
    font-size: 25px;
}

#menu a {
    text-decoration: none;
    color: black;
    font-size: 18px;
}

#menu a:hover {
    text-decoration: underline;
    color: black;
}

@media only screen and (max-width: 780px) {
    nav {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        height: 25px;
        width: 100%;
        align-items: flex-start;
    }

    nav a {
        width: 100%;
    }

    nav a:hover {
        width: 100%;
    }

    #mobilehero {
        display: none;
    }

    #search {
        display: none;
    }

    #empty {
        grid-area: 3/3/8/11;
        display: flex;
        background-color: #1668a5;
        border: solid 5px black;
        border-radius: 25px;
        flex-direction: column;
        align-items: center;
        justify-content: space-evenly;
        font-family: "Comic Sans MS", "Comic Sans", cursive;
    }

    #empty h1 {
        font-size: 50px;
    }

    #empty p {
        font-size: 30px;
        text-align: center;
        padding: 5px;
    }
}

@media only screen and (max-width: 650px) {
    #empty {
        grid-area: 3/3/8/11;
        display: flex;
        background-color: #1668a5;
        border: solid 5px black;
        border-radius: 25px;
        flex-direction: column;
        align-items: center;
        justify-content: space-evenly;
        font-family: "Comic Sans MS", "Comic Sans", cursive;
    }

    #empty h1 {
        font-size: 40px;
    }

    #empty p {
        font-size: 30px;
        text-align: center;
        padding: 5px;
    }
}

@media only screen and (max-width: 530px) {
    #empty {
        grid-area: 3/3/8/11;
        display: flex;
        background-color: #1668a5;
        border: solid 5px black;
        border-radius: 25px;
        flex-direction: column;
        align-items: center;
        justify-content: space-evenly;
        font-family: "Comic Sans MS", "Comic Sans", cursive;
    }

    #empty h1 {
        font-size: 30px;
    }

    #empty p {
        font-size: 25px;
        text-align: center;
        padding: 5px;
    }
}