body{
    margin: 0px;
    padding: 20px;
    background-color: whitesmoke;
}
.title{
    font-size: x-large;
    text-align: center;
    width: 100%;
}
.login-box{
    width: 400px;
    height: 300px;
    margin: 200px auto;
}
.center{
    width: fit-content;
    margin: 5px auto;
    display: flex;
    justify-content: space-evenly;
}
.main-title{
    font-size: 36px;
    width: 100%;
    margin: 5px 0px;
    text-align: center;
}
.btn{
    padding: 5px;
    text-align: center;
    text-transform: capitalize;
    background: orangered;
    color: white;
    margin:2px 5px;
    cursor: pointer;
}
.logout{
    float:right;
}
.home-btns {
    max-width: 60%;
    margin: 10% auto 0px;
}
.box-btn{
    height: 100px;
    width: 100px;
    border: 1px solid darkgreen;
    border-radius: 10%;
    -webkit-border-radius: 10%;
    -moz-border-radius: 10%;
    -ms-border-radius: 10%;
    -o-border-radius: 10%;
    text-align: center;
    line-height: 100px;
    margin: 10px;
    background-color: green;
    color: white;
    font-weight: bold;
    cursor: pointer;
}