html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}
body{
    background-color: #FFFFFF;
    /* background-color: #5ea297; */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    justify-content: center;
    overflow: hidden;
}



.container {
    position: relative;
    width: 100%;
    max-width: 400px;
    padding: 20px;
    background: linear-gradient(to bottom, #eef6f5, #a6d0cb);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap:0;
}
.header-container{
    display: flex;
    /* background: #ffffff; */
    width: 100%;
    height: 8%;
    justify-content: center;
    align-items: flex-end;
    padding-bottom: 10px;
}
.button-container{
    display: flex;
    width: 100%;
    height: 60%;
    justify-content: space-around;
    flex-wrap: wrap;
    align-content: space-evenly;
}
.finish-container{
    display: flex;
    width: 100%;
    height: 20%;
    justify-content: center;
    align-items: center;
}

.floating-buttons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none; /* allow clicks through the wrapper */
}
/* .back-button,
.menu-button  */
.back-button{
    width: 10%;
    aspect-ratio: 1 / 1;
    position: absolute;
    border-radius: 50%;
    background-color: #ffffff92;
    border: none;
    display: flex;
    justify-content: center;
    cursor: pointer;
    pointer-events: all; /* allow these buttons to be clickable */
}
.back-button {
    top: 3%;
    left: 3%;
    align-items: center;
}
.back-button::before {
    content: '';
    width: 12px;
    height: 12px;
    border-top: 5px solid rgb(254, 153, 0);
    border-left: 5px solid rgb(254, 153, 0);
    transform: rotate(-45deg);
    /* move to the right 2px */
    margin-left: 3px;
}
/* .menu-button {
    bottom: 5%;
    right: 5%;
    align-items: center;
}
.menu-button::before {
    content: '';
    width: 20px;
    height: 3px;
    border-radius: 1px;
    background-color: rgb(254, 153, 0);
    box-shadow:
    0 8px 0 0 rgb(254, 153, 0),
    0 -8px 0 0 rgb(254, 153, 0);
} */

h1{
    text-align: center;
    color: #3c6b64;
    font-size: 2.5rem;
    margin: 0;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}
hr{
    width: 85%;
    height: 3px;
    color: #e9a566;
    border: none;
    background-color: #e9a566;
    margin: 0;
}
.test-button{
    /* border: 5px solid #000000; */
    border-width: 5px;
    border-color: #000000;
    background-color: #f1f2f1;
    text-align: center;
    text-decoration: none;
    font-size: 1.75rem;
    font-weight: 700;
    width: 40%;
    padding-top: 3.5%;
    padding-bottom: 3.5%;
    /* margin: 0 3% 0 3%; */
    border-radius: 10px;
    color: #65b0a5;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}
.finish-button{
    border-width: 5px;
    color: rgb(255, 255, 255);
    border-color: #e9a566;
    background-color: #3c6b64;
    font-size: 2rem;
    font-weight: 700;
    padding-top: 10px;
    padding-bottom: 10px;
    width: 40%;
    border-radius: 15px;
}

.heart-rate,
.resources-btn{
    position: absolute;
    bottom: 3%;
    width: 12%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background-color: #ffffff92;
    color: #3c6b64;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    pointer-events: all;
}

.heart-rate {
    left: 3%;
}

.resources-btn {
    right: 3%;
}

.corner-button-icon {
    width: 60%;
    height: 60%;
}