html, body{
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #1c2f5e 0%, #2c4a8c 50%, #3f66b5 100%);
    overflow: hidden;
    font-family: Arial, sans-serif;
}

nav{
    display: flex;
    background: linear-gradient(135deg, #1b2d58 0%, #2a456f 50%, #3c5e9f 100%);
    padding-left: 20px;
    padding-right: 20px;
}


a{
    text-decoration: none;
    color: whitesmoke;
}

a:visited{
    text-decoration: none;
    color: whitesmoke;
}






#container{
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    width: 100%;
    justify-content: center;
}


#cont{
    /* background-color: blue; */
    position: absolute;
    top: 50px;
    display: flex;
    /* background-color: aliceblue; */
    width: 100%;
    align-items: center;
    justify-content: center;
    /* flex-direction: column; */
}


#code_user{
    color: #ffffff;
    font-size: 2.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
    cursor: pointer;

}



#roomButtons button {
    width: 350px;
    height: 60px;
    border: none;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: bold;
    color: white;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}


#room_start button{
    background-color: #28a745;

}

#roomButtons button:hover {
    transform: scale(1.05);
}



#roomButtons{
    display: flex;
    /* height: 100%; */
    flex-direction: column;
    gap: 50px;
    justify-content: center;
    align-items: center;
    padding-left: 2rem;



}



#buttons{
    display: flex;
    gap: 10px;
}



#buttons_i{
    display: flex;
    gap: 20px;
    justify-content: center;
    position: absolute;
    top: 20px;
    right: 15px;
}

#buttons_i i{
    font-size: 2rem;
    height: min-content;
    position: relative;
    top: 15px;
    left: 10px;
    /* background-color: #ffffff; */
}




#buttons_i i:hover{
    color: #ffffff;
    transform: scale(1.05);
    cursor: pointer;
}




#copied{
    display: none;
}





#continfo{
    display: flex;
    flex-direction: column;
    align-items: center;

}



#description{
    color:#9E9E9E ;
}


#menu{
    background-color: #e84343;
}



#code_copied{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}


#copied1{
    display: none;
}


#copy_text1{
    display: none;
}





@media (max-width: 770px){
    nav{
        align-items: center;
        justify-content: center;
    }
    #continfo{
        margin-top: 30px;
    }
    #cont{
        flex-direction: column;
    }
    #buttons_i{
        display: none;
    }

}



@media (max-width: 420px){
    #code_user{
        font-size: 2rem;
    }
    #buttons{
        align-items: center;
        justify-content: center;
        width: 100%;
        overflow: hidden;
    }
    #roomButtons{
        padding: 10px;
    }


}



@media (max-height: 630px){
    #buttons{
        margin-top: 150px;
    }
    html, body{
        overflow: visible;
    }

}