html{
    margin:0;
    height:100%;
}
body{
    
    font-family: 'Raleway', sans-serif;
    background: linear-gradient(to right top,#e588f7, #f7c3ad);
    color: white;
}
#heading-div{
    height: 200px;
}
#heading-div h4{
    margin-left: 3%;
}
#play-button{
    background-color: lightblue;
    border: 2px solid yellow;
    border-radius: 10px;
    height: 25%;
    width: 80px;
    font-weight: bolder;
    font-size: 115%;
    text-align: center;
    color: white;
    float: right;
    margin-right: 3%;
}
#play-button:hover{
    background-color: white;
    border: lightblue;
    color: lightblue;
}
.title-size{
    font-size: 300%;
}
#main-display-container{
    height: 150px;
    position: relative;
}
.horizontal-line-div{
    display: flex;
    float: left;
    width: 100%;
    height: 100%;
    align-items: center;
}

.horizontal-line{
    height:5px;
    background-color: white;
    border: none;
    width: 100%;
   
}
#display-box{
    position: absolute;
    float: left;
    width:200px;
    height: 100%;
    background-color: white;
    margin-left: 43%;
    box-shadow: 7px 7px 2px 1px rgba(94, 225, 242, .9);
}
#display-box-text{
    color: black;
    font-size: 300%;
    text-align: center;
}

#bottom-half-of-page-div{
    height: 350px;
}

.inner-half-page-div{
    float: left;
    height: 100%;
    width: 49%;
}
#input-number{
    height: 150px;
    width: 250px;
    color: white;
    font-weight: bolder;
    text-align: center;
    font-size: 300%;
    background-color: rgba(255, 222555, 255, .2) ;
    border: none;
    border-radius: 15px;
    /*box-shadow: 2px 3px 3px gray; */
}
#check-button{
    background-color: lightblue;
    border: 2px solid yellow;
    border-radius: 10px;
    height: 50px;
    width: 80px;
    font-weight: bolder;
    font-size: 115%;
    text-align: center;
    color: white;
}
#check-button:hover{
    background-color: white;
    border: lightblue;
    color: lightblue;
}

/* 
.authors {
} */

.authors h3 {
    margin-top: 1%;
    width: 100%;
}
.authors p {
    float: left;
    width: 33%;
    margin-top: 0%;
    color: black;
    font-weight: bold;

}