*{
     margin: 0;
     padding: 0;
     box-sizing: border-box;
}
.nav-center{
     height: 10vh;
     margin: 0 auto;
     background-color: rgb(242, 242, 149);
     display: flex;
     align-items: center;
     justify-content: center;
     color: rgb(88, 128, 203);
     overflow: hidden;
     font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
.container{
     display: flex;
     height: 90vh;
     align-items: center;
     justify-content: center;
     background-color: #f156d3;
     overflow: hidden;
}
.container-content{
     height: 200px;
     width: 500px;
     /* border: 5px solid black; */
     text-align: center;
}
#head{
     margin: 10px;
     font-size: 50px;
     font-weight: bolder;
}
#btn{
     margin: 15px 0;
     background: lightcoral;
     font-size: 25px;
     padding: 5px;
     border-radius: 15px;
}
#color-code{
     color: #f156d3;
     background-color: beige;
     border-radius: 10px;
     padding: 0 5px;
}
hr{
     border: 1px solid black;
}