@import url('../../external.html?link=https://fonts.googleapis.com/css2?family=Montserrat:wght@700&amp;display=swap');
@import url('../../external.html?link=https://fonts.googleapis.com/css2?family=Oxanium&amp;display=swap');
@import url('../../external.html?link=https://fonts.googleapis.com/css2?family=Kalam&amp;display=swap');
* {
  -moz-user-select: none; -webkit-user-select: none; -ms-user-select:none; user-select:none;-o-user-select:none;
}
body, html {
  color: #fff;
  background: #000;
  font-family: Montserrat;
}

h4 {
 box-sizing: border-box;
	display: flex;
	border-radius: 10px;
	flex-direction: row;
	justify-content: space-around;
	align-items: center;
	width: auto;
	position: relative;
	transition: .1s;
	background: #444;
	margin: 5%;
	padding: 8px;
	font-family: Oxanium;
}
h4:active {transform: scale(0.98);}
.mInfo {
  background-color: #FF0000;
  border-left: 6px solid #FF0000;
  margin: 5%;
  padding: 2px;
  font-family: Kalam;
  border-radius: 5px;
  text-align: center;
  color: #000;
}
.mSocial {
 box-sizing: border-box;
	display: flex;
	border-radius: 10px;
	flex-direction: row;
	justify-content: space-around;
	align-items: center;
	width: auto;
	position: relative;
	transition: .1s;
	background: #FF0000;
	margin: 5%;
	font-family: Oxanium;
}
.mSocial img {
  height: 30px;
  width: 30px;
}
.mButton {
 box-sizing: border-box;
	display: flex;
	border-radius: 10px;
	flex-direction: row;
	justify-content: space-around;
	align-items: center;
	width: auto;
	position: relative;
	transition: .1s;
	background: #FF0000;
	margin: 5%;
	font-family: Oxanium;
}
.mButton img {
  height: 30px;
  width: 30px;
}
.mTitle {
  font-family: Kalam;
}
.mHolder {
    display: block;
    height: auto;
    width: auto;
    border-radius: 5px;
    background: #FF0000;
    text-align: center;
    padding: 15px;
    margin: 5%;
    transition: .1s;
    color: #fff;
}
.mHolder p {
    font-family: Oxanium;
    margin: 5%;
    color: #fff;
}
.mContainer {
  max-width: 98%;
  margin: auto;
  color: #000;
}

.mTopnav {
  overflow: hidden;
  background-color: #FF0000;
  position: relative;
  border-radius: 5px;
}

.mTopnav #mLinks {
  display: none;
}

.mTopnav a {
  color: #fff;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
  display: block;
}

.mTopnav a.mIcon {
  background: #FF0000;
  border: .5px solid #FF0000;
  border-radius: 5px;
  display: block;
  position: absolute;
  right: 0;
  top: 0;
}

.mTopnav a:hover {
  background-color: #FF0000;
  color: #fff;
}

.mActive {
  background-color: #FF0000;
  border-radius: 5px;
  border: .5px solid #FF0000;
  color: #fff;
}
.mFooter {
  padding: 10px 0;
  color: #fff;
  text-align: center;
  font-family: Oxanium;
}
.mFooter .mCopyright {
  margin-top: 15px;
  font-size: 13px;
  color: #fff;
  margin-bottom: 0;
}
#mToast {
  visibility: hidden;
  min-width: 250px;
  margin-left: -125px;
  background-color: #FF0000;
  color: #000;
  text-align: center;
  border-radius: 10px;
  padding: 14px;
  position: fixed;
  z-index: 1;
  left: 47%;
  bottom: 30px;
  font-family: Oxanium;
}
#mToast.show {
  visibility: visible;
  -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
  animation: fadein 0.5s, fadeout 0.5s 2.5s;
}
@-webkit-keyframes fadein {
  from {bottom: 0; opacity: 0;}
  to {bottom: 30px; opacity: 1;}
}
@keyframes fadein {
  from {bottom: 0; opacity: 0;}
  to {bottom: 30px; opacity: 1;}
}
@-webkit-keyframes fadeout {
  from {bottom: 30px; opacity: 1;}
  to {bottom: 0; opacity: 0;}
}
@keyframes fadeout {
  from {bottom: 30px; opacity: 1;}
  to {bottom: 0; opacity: 0;}
}
