body {
    margin: 0;
    padding: 0;
    background: #0f0f0f;
    /* background-image: url(../images/background.svg);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed; */
    
}
/* .bg {
    background-image: url(../images/background.svg);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    animation-name: floating;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

@keyframes floating {
    0% { transform: translate(0,  0px); }
    50%  { transform: translate(0, 15px); }
    100%   { transform: translate(0, -0px); }   
} */

@font-face {
    font-family: "IsidoraSans-Bold";
    src: url(../fonts/IsidoraSans-Bold.ttf);
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "IsidoraSans-SemiBold";
    src: url(../fonts/IsidoraSans-SemiBold.ttf);
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "IsidoraSans-Regular";
    src: url(../fonts/IsidoraSans-Regular.ttf);
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "IsidoraSans-Medium";
    src: url(../fonts/IsidoraSans-Medium.ttf);
    font-weight: normal;
    font-style: normal;
}

.menu ul {
    list-style-type: none;
    text-decoration: none;
    margin: 0;
    padding: 0;
    position: absolute;
    text-align: center;
    bottom: 25px;
    left: 50%;
    transform: translate(-50%);
    white-space: nowrap; /* ✖ */
}

.menu ul li {
    float: left;
  }
  
.menu ul li a {
    text-decoration: none;
    display: inline-block;
    padding: 0 10px;
}

.menu ul li a:hover {
    text-decoration: underline #8d8d8d;
    
  }

.menu ul li a:active { /* ✖ */
    color: #808080;
}

.container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.container2 {
    position: absolute;
    bottom: 35px;
    right: 35px;
}

.container2-mobile {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translate(-50%);
}

.container3 {
    position: absolute;
    top: 35px;
    left: 35px;
}

@media screen and (min-width:780px) {
    .container3 {
        display: none;
    }
}

.container4 {
    position: absolute;
    top: 35px;
    left: 35px;
}

.container5 {
    position: absolute;
    top: 35px;
    right: 35px;
}

@media screen and (max-width:780px) {
    .container4 {
        display: none;
    }
}

.dropbtn {
    content: url(../images/hamburger.svg);
    background: none;
    border: none;
    cursor: pointer;
    display: grid;
    place-items: center;
    height: 30px;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    transition: all .1s ease-in-out;
  }
  
.dropbtn:hover {
    transform: scale(1.050); 
}

.dropbtn:active {
    transform: scale(0.950);
}
.dropdown {
    position: relative;
    display: inline-block;
  }
  
.dropdown-content {
    display: none;
    position: absolute;
    width: 225px;
    min-width: 225px;
    right: 0px;
    top: 50px;
    border: solid #383838 0.25px;
    background: #1c1c1c;
    border-radius: 12px;
    padding: 12px 12px;
    min-width: 160px;
    overflow: auto;
    z-index: 1;
  }
  
.dropdown-content a {
    font-family: "IsidoraSans-SemiBold";
    color: #f2f3ed;
    padding: 16px 16px;
    text-decoration: none;
    display: block;
  }
  
.dropdown-content-inside {  
    transition: all .1s ease-in-out;
}

.dropdown-content-inside:active {
    transform: scale(0.970);
}

.dropdown a:hover {
    background-color: #292929;
    border-radius: 12px;
}

.show {
    display: block;
}

span.a {
    content: url(../images/external-link.svg);
    height: 12px;
}

span.discord {
    content: url(../images/discord.svg);
    height: 12px;
}

.text-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.shroom {
    content: url(../images/logo-full.svg);
    display: grid;
    place-items: center;
    height: 30px;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    transition: all .1s ease-in-out;
}

.shroom:hover {
    transform: scale(1.050); 
}

.shroom:active {
    transform: scale(0.950);
}

.shroom-mobile {
    content: url(../images/shroom.svg);
    display: grid;
    place-items: center;
    height: 40px;
    width: 40px;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    transition: all .1s ease-in-out;
}

.shroom-mobile:hover {
    transform: scale(1.050); 
}

.shroom-mobile:active {
    transform: scale(0.950);
}

.box {
    display: grid;
    place-items: center;
    border: solid #383838 0.25px;
    border-radius: 12px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    background: #1c1c1c;
    height: 200px;
    width: 200px;
}

.box2 {
    display: grid;
    place-items: center;
    border: solid #383838 0.25px;
    border-radius: 12px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    background: #1c1c1c;
    height: 200px;
    width: 200px;
}

@media screen and (max-width: 780px) {
    .container2 {
        display: none;
    }
}

.qrcode {
    height: 150px;
    width: 150px;
    content: url(../images/qrcode.svg);
    user-select: none;
    -moz-user-select: none;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

.qrcode2 {
    height: 150px;
    width: 150px;
    content: url(../images/qrcode.svg);
    user-select: none;
    -moz-user-select: none;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

@media screen and (max-width: 780px) {
    .qrcode2 {
        display: none;
    }
}

.button {
    display: grid;
    place-items: center;
    border: solid #383838 0.25px;
    border-top: 0;
    border-radius: 12px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    background: #1c1c1c;
    height: 50px;
    width: 200px;
    text-decoration: none;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

.button:active {
    background: #1f1f1f;
}

@media screen and (max-width:780px) {
.button-mobile {
    display: grid;
    place-items: center;
    text-decoration: none;
    border: solid #383838 0.25px;
    border-radius: 12px;
    background: #1c1c1c;
    height: 50px;
    width: 200px;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}
}

.button-mobile:active {
    background: #1f1f1f;
}

/*
.youtube, .steam, .facebook, .spotify, .tiktok {
    height: 18px;
    margin: 0;
    padding: 0px;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

.youtube {
    content: url(../images/youtube.svg);
}

.steam {
    content: url(../images/steam.svg);
}

.facebook {
    content: url(../images/facebook.svg);
}

.spotify {
    content: url(../images/spotify.svg);
}

.tiktok {
    content: url(../images/tiktok.svg);
}
*/

h1 {
    font-family: "IsidoraSans-SemiBold";
    color: #f2f3ed;
    font-size: 36px;
    text-align: center;
    margin: 0;
}

h2 {
    font-family: "IsidoraSans-SemiBold";
    color: #f2f3ed;
    font-size: 24px;
    text-align: center;
}

p {
    font-family: "IsidoraSans-Medium";
    color: #8d8d8d;
    text-align: center;
    font-size: 16px;
}

p.a {
    font-family: "IsidoraSans-SemiBold";
    color: #f2f3ed;
    font-size: 18px;
    text-align: center;
    padding: 0;
    margin: 0;
}


p.a-m {
    font-family: "IsidoraSans-SemiBold";
    color: #f2f3ed;
    font-size: 18px;
    text-align: center;
    padding: 0;
    margin: 0;
}

@media screen and (min-width:780px) {
    p.a-m {
        display: none;
    }
}

p.bot {
    font-family: "IsidoraSans-Medium";
    color: #8d8d8d;
    text-align: center;
    font-size: 14px;
    margin: 0;
    padding: 2px;
}

hr.a {
    border: 1px solid #8d8d8d;
    border-radius: 10px;
}

hr.b {
    border: 1px solid #f2f3ed;
    border-radius: 10px;
}

::-moz-selection {
    color: #f2f3ed;
    background: #8f44ff;
  }
  
  ::selection {
    color: #f2f3ed;
    background: #8f44ff;
  }

/* 6b617073 */
/* v1.4 [27-05-24] */