html {
    font-size: 10px;
}

/* #main{
    margin-left: 5rem;
} */
#main hr {
    height: 0.3125rem;
    border-radius: 3.125rem;
    background-color: #07ac93;
}

#main h1 {
    text-align: center;
    font-size: 3rem;
    /* color: #07ac93; */
}

.parent {
    /* border: 2px solid red !important; */
    border-collapse: collapse;
    width: 95%;
    margin: auto;
    margin-bottom: 4rem;
    border-radius: .5rem;
    background-color: #d7f9f4;
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
}

.parent td {
    position: relative;
    /* border: 2px saddlebrown solid; */
    width: 50%;
    height: 5rem;
    font-size: 2rem;
    padding-left: 2rem;
}




i {
    /* color:#07ac93; */
    color: #091B61;
}

#b1 {
    background-color: #07ac93;
    color: white;
    font-weight: bolder;
    font-size: 1.5rem;
    padding: .5rem 1.5rem;
    /* width: 13rem;
    height: 3.2rem; */
    border-radius: 1.5625rem;
    border: none;
    cursor: pointer;
    /* margin-left: 32%; */
    position: absolute;
    top: 1rem;
    right: 10%;
}

#b1:hover {
    background-color: white;
    color: #07ac93;
    border: solid grey 1px;
}

#status {
    animation: blinker 1s linear infinite;
}

@keyframes blinker {
    50% {
        opacity: 0;
    }
}

@media(max-width:998px) {
    html {
        font-size: 55%;
    }
}

@media(max-width:768px) {
    html {
        font-size: 45%;
    }

    /* #main #parent {
        height: 35rem;
    } */
}