body {
    margin: 0;
    padding: 0;
    background-color: white;
    display: flex;
    justify-content: center;
    height: 100vh;
    align-items: center;
}

.container {
    width: 500px;
    height: 700px;
    border-radius: 25px;
    background-color: rgb(29, 122, 184);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 70px;
    position: relative;
    border: 3px solid black;
    box-shadow: 3px 3px 3px black;
}

img {
    width: 60px;
}

.over {
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translate(-50%, -15%);
}

.under {
    position: absolute;
    bottom: 15%;
    left: 50%;
    transform: translate( -50%, -15%);
}

.under button {
    background-color: white;
    border: 1px solid black;
    border-radius: 25px;
    padding: 10px;
    cursor: pointer;
    font-size: 70px;
    width: 100px;
}

.over button {
    background-color: white;
    border: 1px solid black;
    border-radius: 25px;
    padding: 10px;
    cursor: pointer;
    font-size: 70px;
    width: 100px;
}

.startbtn {
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translate(-50%, -5%);
    font-size: 35px;
    padding: 5px;
    border: 1px solid black;
    border-radius: 5px;
}






