/*CSS Copyright Aezir ©*/

body {
    background: url("../img/bg.jpg") rgba(1, 1, 1, .7);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-blend-mode: multiply;
}

.title {
    width: 100%;
    margin:auto;
    margin-top: 3%;
    text-align: center;
    font-size: 30px;
    font-weight: bold;
    color: white;
}

.container {
    width: 50%;
    margin: auto;
    margin-top: 1%;
    border: 1mm ridge #D4D4D4;
    padding: 10px;
    background-color: #fff;
}

.rulestxt {
    width:100%;
    margin:auto;
    text-align: center;
    font-size: 30px;
    font-weight: bold;
    color: White;
    margin-top: 1%;
    margin-bottom: 1%;
}

.discord {
    width:100%;
    margin: auto;
    text-align: center;
}

.discord #disti {
    font-size: 10%;
    font-weight: bold;
    color: white;
}

.button {
    display: block;
    font-weight: bold;
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    text-transform: uppercase;
    text-align: center;
    padding: 1rem;
    color: black;
    background: #C70039;
    cursor: pointer;
    border: 1mm solid #D4D4D4;
    border-radius: 7px;
    transition: all 0.30s ease-out;
    width:52%;
    margin:auto;
}

.button:hover {
    color: #fff;
}

.button:before {
  display: inline-block;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 5px solid currentColor;
  vertical-align: middle;
  margin-right: .7rem;
  transform: translateY(-2px);
  transition: transform .2s ease-out;
}

.footer {
    width: 100%;
    margin: auto;
    margin-top: 3%;
    text-align: center;
    color: white;
}

.wrap-collabsible {
  margin-bottom: 1.2rem 0;
}

input[type='checkbox'] {
  display: none;
}

.lbl-toggle {
    
    display: block;
    font-weight: bold;
    font-family: monospace;
    font-size: 1.2rem;
    text-transform: uppercase;
    text-align: center;
    padding: 1rem;
    color: #8BDAE1;
    background: #00549a;
    cursor: pointer;
    border-radius: 7px;
    transition: all 0.30s ease-out;
}

.lbl-toggle:hover {
    color: #fff;
}

.lbl-toggle:before {
    content: ' ';
    display: inline-block;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 5px solid currentColor;
    vertical-align: middle;
    margin-right: .7rem;
    transform: translateY(-2px);
    transition: transform .2s ease-out;
}

.toggle:checked + .lbl-toggle::before {
    transform: rotate(90deg) translateX(-3px);
}

.collapsible-content {
    max-height: 0px;
    overflow: hidden;
    transition: max-height .30s ease-in-out;
}

.toggle:checked + .lbl-toggle + .collapsible-content {
    max-height: 300vh;
}

.toggle:checked + .lbl-toggle {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

.collapsible-content .content-inner {
    background: rgba(174, 182, 191, .2);
    border-bottom: 1px solid rgba(0, 84, 154, .45);
    border-bottom-left-radius: 7px;
    border-bottom-right-radius: 7px;
    padding: .5rem 1rem;
}

a:link {
    color: white;
    text-decoration: none;
}

a:visited {
    color:#7FB449;
    text-decoration: none;
}

a:hover {
    color:#8BDAE1;
    text-decoration: none;
}

@media (max-width:999px) {
   body {
    background: url("../img/mobile-bg.jpg") rgba(1, 1, 1, .7);
    }
   .container {
    width: 90%;
    }
    .button {
    width:90%;
    margin-bottom:10%;
    }
    .rulestxt {
    margin-bottom: 6%;
    }
    .footer {
    margin-top: 10%;
    }
}