@charset "UTF-8";

*, *:before, *:after {
    box-sizing: border-box;
    -webkit-tap-highlight-color:  rgba(255, 255, 255, 0); /*Remove ugly blue highlight on tap (mobile)*/
}

* {
    margin: 0;
    padding: 0;
  }

a:link, a:visited {
    color: #fff;
    text-decoration: none;
}

a:hover, a:active {
    color: #fff;
    text-decoration: none;
}

/*set margins on either side of the page*/
#main-container {
    margin: auto;
    max-width: fit-content;
}

#header {
    align-items:center;
    background-color: rgba(8, 98, 173, 0.8);

    display: flex;
    justify-content: space-between;
    margin-top: 5vh;
    padding: 15px;
    border: solid 4px;
    border-color: rgba(8, 98, 173, 1);
}

#logo-container {
    align-items: center;
    display: flex;
    margin: 2.2% 0;
}

#logo {
    height: 5vw;
    margin-right: 1vw;
}

.logo-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hermit, .veterans {
    align-items: center;
    display: flex;
    font-family: "Rubik Mono One", monospace;
    font-size: 2.3vw;
    font-style: normal;
    font-weight: 400;
    height: 2vw;
    margin: 0;}
.hermit { color: #a2fbff; }
.veterans { color: #57dffd; }

/*navbar styling*/
#header ul, footer ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.navbutton:link, .navbutton:visited {
   color: #fff;
}

.navbutton:hover, .navbutton:active, .activenavbutton:hover, .activenavbutton:active, .activenavbutton:visited, .activenavbutton:link {
    color: rgb(16, 16, 17);
    background-color: rgba(87, 223, 253, 0.9);
    font-weight: 600;
}

body {
    background-attachment: fixed;
    background-image: url('images/central.png');
    background-repeat: no-repeat;
    background-size: cover;

    font-family: "Lato", sans-serif;
    font-size: 1.05rem;
    color: #fff;
}

#navBar {
    background-color: rgb(16, 16, 17);
    padding: 15px 20px;
    margin-top: 15px;
}

#navBar ul li, #topNav ul li {
    display: inline-flex;
}

#navBar ul {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
}

.navbutton, .activenavbutton {
    flex-grow: 1; /* Allows the buttons to grow and fill available space */
    text-align: center; /* Centers the text within each button */
    white-space: nowrap; /* Prevents the text from wrapping onto a new line */
    margin: 0px;

    font-family: "Major Mono Display", monospace;
    font-weight: 600;
    font-style: normal;

    transition: 500ms;
    transition-property: background-color, color;

    padding: 1rem 3rem;
    margin: .1rem;
}

section{
    background-color: rgba(16, 16, 17, 0.85);
    margin: 0px;
    padding: 15px;
}

#topNav .playnow:hover {
    background-color: #fff;
}
#topNav .discord:hover {
    background-color: #6577e6;
}
#topNav .donate:hover {
    background-color: #FF5E5B;
}

#topNav img {
    height: 28px;
    margin-right: 20px;
    vertical-align: middle;
}

#topNav .navbutton {
    padding: 20px 30px;
    font-size: 1.3rem;
    margin: 0px;
    align-items: center;
}
  












