body {
    margin: 0;
    text-align: center;
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #1B244A;
    max-width: 400px;
    margin: 20px auto 20px auto;
    padding: 10px 20px;
    border: 6px solid whitesmoke;
    border-radius: 10px;
    box-shadow: 0 0 5px black;
}

.main{
    margin-left: 20px;
    margin-right: 20px;
}

h3 {
    color: white;
    font-size: 30px;
    margin-bottom: 0;
}

.homebox, .guestbox{
    display: flex;
    justify-content: space-evenly;
    background: black;
    margin-bottom: 20px;
    margin-top: 20px;
    border: none;
    border-radius: 10px;
    color: #F94F6D;
    font-family: 'Cursed Timer ULiL', sans-serif;
    font-size: 70px;
    padding: 20px;
}

.num {
    /* display: flex;
    justify-content: space-between; */
    margin-bottom: 30px;
}

.btn {
    margin-right: 5px;
    padding: 7px;
    background: none;
    border: 1px solid white;
    border-radius: 3px;
    color: white;
    font-family: 'Cursed Timer ULiL', sans-serif;                            
}

.btn:hover{
    cursor: pointer;
    background-color: #515b8a;
}

.btn:active{
    transform: translateY(2px);
}

.clearBtn{
    margin-top: 20px;
    background-color: #1B244A;
    border: 6px solid white;
    box-shadow: 0 0 10px black;
    border-radius: 10px;
    padding: 15px 35px;
    color: #F94F6D;
    font-weight: bold;
    font-size: 25px;
}

.clearBtn:hover{
    cursor: pointer;
    background-color:#515b8a;
}

.clearBtn:active{
    transform: translateY(4px);
}