/**
 * © 2022 ST2 Studios Ltd. All rights reserved
 */
body {
    background-color: #921a1a;
    transition: opacity 400ms;
}

.bodyNotLoaded {
    opacity: 0;
}

.bodyLoaded {
    opacity: 1;
}

.logo {
  width: 50%;
}

.main-menu {
    padding: 0;
    list-style: none;
}

.main-menu li {
    font-weight: 500;
    font-size: 3rem;
    display: inline;
    padding-left: 4vw;
    padding-right: 4vw;
}

.menu-content {
    -webkit-transition: all .3s ease .15s;
    -moz-transition: all .3s ease .15s;
    -o-transition: all .3s ease .15s;
    -ms-transition: all .3s ease .15s;
    transition: all .3s ease .15s;
}

.menu-content-disabled {
    opacity:0;
    clear: both;
    height: 0;
    padding: 0 8px;
    overflow: hidden;
}

.menu-button {
    background: none;
	color: inherit;
	border: none;
	padding: 0;
	font: inherit;
	cursor: pointer;
	outline: inherit;
    transition: color 0.3s;
}

.menu-button:hover {
    color: #999999;
}

.menu-button-active, .menu-button-active:hover {
    color: #e84141;
}

@import url(http://fonts.googleapis.com/css?family=Roboto:400,100,100italic,300,300ita??lic,400italic,500,500italic,700,700italic,900italic,900);
html, body, html * {
  font-family: 'Roboto', sans-serif;
  color: white;
}

/* not a joke*/
.iHaventCenteredADivInAgesSendHelp {
  margin:auto;
  text-align: center;
}


