body{
    background-color: #17504b;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

}
.wrapper {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    height: 80%;
}
:root{
    background: #17504b;
}
#or-div {
    margin: 20px;
    font-weight: bolder;
    font-size: xx-large;
    background-color: #17504b;
    color: transparent;
    text-shadow: 0px 2px 3px rgba(255, 255, 255, 0.1);
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
    filter: brightness(2);


}
.create-button {
    background-color: rgb(238 148 0);
    color: white;
    width: 150px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: bolder;
    font-size: x-large;
    padding: 10px;
    text-transform: uppercase;
    border: 0;
    border-radius: 5px;
    box-shadow: 5px 4px 5px 0 rgb(35 31 26);
    transition: all 0.5s ease-in-out;
}
.create-button:active{
    box-shadow: inset 0 0 14px 0 #17504b ;
}
.create-button:hover{
    background-color: rgb(231, 176, 87);
    cursor: pointer;
}
.ppl-emoji{
    color: transparent;  
    text-shadow: 0 0 0 #17504b;
}

.game-item {
    margin: 10px 0 10px 0;
    background-color: white;
    color:rgb(238 148 0);
    height: 40px;
    border-radius: 5px;
    opacity: 0.8;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5px 0 5px;
    box-shadow: 0px 4px 5px 0 rgb(35 31 26);

}
.simplebar-content{
    margin-left: 5px;
    margin-right: 5px;
}

.join-wrapper {
    background-color: rgb(238 148 0);
    color: white;
    border-radius: 5px;
    align-items: center;
    display: flex;
    flex-direction: column;
    height: 50%;
    box-shadow: 5px 4px 5px 0 rgb(35 31 26);
    padding: 10px;
    width: 300px;

}
.join-text {
    font-weight: bolder;
    font-size: x-large;
    margin-top: 5px;
}
.button-join{
    color: transparent;  
    text-shadow: 0 0 0 white;
    border-radius: 2px;
    background-color: rgb(238 148 0);
    border: 0;
    transition: all 0.3s ease-in-out;
}

.button-join:disabled{
    
    background-color: rgb(238, 202, 144);
}
.button-join:hover{
    box-shadow: inset 0 0 14px 0 white ;
    cursor: pointer;
}
.button-join:disabled:hover{
    
    box-shadow: none ;
    cursor: unset;

}

.bold{
    font-weight: bold;
}
.games-wrapper{
    overflow: auto;
    margin-top: 5px;
    margin-bottom: 5px;
    border-radius: 5px;
    width: 100%;

}
.no-games{
    height: 100%;
    color:#17504b;
    font-weight: bold;

    display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;
    text-shadow: 0px 1px 2px rgba(27, 8, 8, 0.74);

    transform: rotate(20deg);
    flex-direction: column;
}

.no-games .create-button{
    margin-top: 40px;
    box-shadow: 0px 0px 5px 0 rgb(35 31 26);
}

.join-text,.create-button{
    text-shadow: 1px 1px 2px #17504b;

}

@media (max-width: 1250px) {

    .no-games{
        font-size: 30;
    }
    .game-item{
        font-size: 40px;
        padding: 20px 10px 20px 10px;
        border-radius: 10px;
        margin-top: 0;
    }
    .game-item+.game-item{
        margin-top: 20px;
    }
    .button-join{
        font-size: 30px;
        border-radius: 5px;
        padding-left: 15px;
        padding-right: 15px;
        
    }
    .no-games .create-button{
        width: 80%;
    
    }
    .join-wrapper{
        border-radius: 15px;
        padding: 25px;
        width: 70%;
        height: 60%;
    }
    .games-wrapper{
        margin-top: 25px;
    }
    .create-button{
        width: 40%;
        border-radius: 15px;
        font-size: 40px;
        text-shadow: 2px 0 #ffffff;
        letter-spacing:2px;
        font-weight:bold;
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .join-text{
        font-size: 40px;
        text-shadow: 2px 0 #ffffff;
        letter-spacing:2px;
        font-weight:bold;
    }
    .or-div{
        font-size: 40px;
    }



}
