html {
    min-height: 100%;
}

.menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #d46000;
    color: #fff;
    padding: 10px;
    height: 8vh;
    border-bottom: 2px solid black;
}

.logo {
    border-radius: 50%;
    width: 64px;
    height: 64px;
    background-image: url('../img/logo.jpeg');
    background-size: cover;
    background-position: center;
    margin-right: 25px;
}

.buttons {
    display: flex;
    padding: 5px 10px;
}

.button {
    margin: 3px;
    border: none;
    background-color: rgb(121, 38, 0);
    color: #fff;
    cursor: pointer;
    width: 115px;
    height: 50px;
    border: 1px solid black;
    text-transform: uppercase;
    border-radius: 10px;
}

.button:hover {
    background-color: rgb(255, 81, 0);
    color: #fff;
}

.content {
    margin: auto;
    display: block;
    text-align: center;
}
.liveinfo {
    color: #963c00;
}



@media (min-width: 768px) {
   
    .container-night {
        border: 3px solid rgb(0, 0, 0);
        border-radius: 15px;
        padding: 0;
        margin: 10px auto;
        margin-right: 10px;
        text-align: center;
        width: 110px;
        color: #fff;
        background-color: rgba(0, 0, 0, 0.7);
        align-items: center;
        justify-content: center;
        box-shadow: 5px 5px 5px #fff;
    }
}

#lightdark {
    width: 50px;
}
@media (max-width: 768px) {
    .container, .container-night {
        width: 50% !important;
    }
  
    .logo {
        display: none;
    }
}

.mx-auto {
    margin-left: 0 !important;
}

.container {
    text-align: center;
    align-items: center;
    justify-content: center;
    box-shadow: 5px 5px 5px #000000;
    background-color: rgba(255, 255, 255, 0.7);
    width: 50%;
    border-radius: 15px;
    padding: 15px;
    margin: 25px auto;
}


@media (max-width: 768px) {
    #stream_embed {
        width: 95%;
        height: 25vh;
    }
    #chat_embed {
        width: 95%;
        height: 60vh;
    }
}




#rewards {
    display: inline-block;
    margin: 0 auto;
}
.card {
    width: 250px;
    height: 525px;
    margin: 10px;
}


.specs {
    width: 80%;
    margin: auto;
    justify-content: center;
    align-items: center;
}
.list {
    position: relative;
    display: inline-block;
}
.list h2 {
    color: #fff;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 10px;
    margin-left: 30px;
}
.list ul {
    position: relative;
}
.list ul li {
    position: relative;
    left: 0;
    color: #fce4ec;
    list-style: none;
    border-left: 2px solid #ff863f;
    transition: 0.3s;
    cursor: pointer;
}
.list ul li span {
    position: relative;
    padding: 3px;
    padding-left: 1px;
    display: inline-block;
    z-index: 1;
    transition: 0.1s;
}
.list ul li:hover span {
    color: #111;
}
.list ul li:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #ff863f;
    transform: scaleX(0);
    transform-origin: left;
    transition: 0.3s;
}
.list ul li:hover:before {
    transform: scaleX(1);
}


nav {
    z-index: 1;
    position: relative;
}

a{
    color: white;
    text-decoration: none;

}