*{
    padding: 0px;
    margin: 0px;
    font-family: Georgia, 'Times New Roman', Times, serif;
    box-sizing: border-box;
}
body{
    background-color: rgb(69, 69, 216);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
#container{
  width: 400px;
  height:530px ;
  border-radius: 5px;
  background-color: white;
}
#name{
    height: 40px;
    background-color: rgb(43, 43, 73);
    color: white;
    text-align: center;
    font-size: 25px;
    margin-left: 10px;
    margin-right: 10px;
    padding-top: 3px;
    border-radius: 4px;
}
#line1{
    color: rgb(66, 66, 212);
    text-align: center;
    font-size: 19px;
    margin: 10px;
    font-weight: bold;
    margin-top: 20px;
}
#input_container{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;

}
#number{
    height: 50px;
    width: 160px;
    border-radius: 5px;
    text-align: center;
    border: 2px solid rgb(172, 162, 162);
    font-size: 25px;
    font-weight: bold;
    color:purple;
    box-shadow: 1px 1px 0px rgb(70, 55, 55);
}
#btn_div{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 70px;
}
#btn{
    height: 50px;
    width: 130px;
    font-size: 20px;
    font-weight: bold;
    color: white;
    background-color: rgb(46, 46, 112);
    border-radius: 5px;
    border: none;
}
#guessing_info{
    width: 310px;
    height: 50px;
    border: 2px solid white;
    text-align: center;
    margin: 15px;
    font-size: 20px;
    padding-top: 18px;
}
#hint {
    text-align: center;
    padding: 30px;
    font-size: 20px;
    color: rgb(51, 51, 189);
    font-weight: 500;
}
#playAgain {
    margin-top: 20px;
    display: none;
}
#playAgainBtn,
#ExitBtn {
    width: 120px;
    height: 40px;
    margin-top: 15px;
    margin-left: 20px;
    border: none;
    border-radius: 5px;
    background-color: rgb(28, 62, 232);
    color: white;
    box-shadow: 2px 2px 0 rgb(20, 31, 77);
    font-size: 20px;
}
#playAgainBtn:hover,
#ExitBtn:hover {
    box-shadow: none;
}


