html {
    background: linear-gradient(325deg, rgb(255, 235, 104) -1.2%, rgb(61, 247, 255) 119.2%);
    background-attachment: fixed;
    border: 0;
    box-sizing: border-box;
    max-width: 100%;
    font-family: 'Varela Round', sans-serif;
}

body{
    margin:0;
}

.material-symbols-outlined{
    font-size:x-large;
}

.calc-section{
    color: #016C53;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
 margin: 6em auto;
    max-width: 15em;
    min-height: 19em;
    padding:3em;
    background-color: #FEF7FF;
    border-radius: 2rem;
}

.calc-section:hover, .article:hover{
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.2);
}

.article{
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
    margin: 6em auto 4em auto;
    background-color:#FEF7FF;
    padding:4rem;
    max-width: 50rem;
    min-height: 100%;
    color:#016C53;
    border-radius: 5rem;
    text-align:justify;
}


h2{
    margin-bottom: 0.8em;
    margin-top: 0;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
    display:inline;
}

h1{
    display:inline;
}

label, .inputbox {
    display:block;
    text-align: center;
    margin: 0.4rem auto 0 auto;
    
}

input{
    border: 0.2px solid #016C53;
    background-color: #1d9277;;
    padding: 0.2em;
    margin: 0.25px auto 10px auto;
    border-radius:1em;
    text-align: center;
    max-width: 100%;
    color:#FEF7FF;
}


#calculate{
    font-family: 'Varela Round', sans-serif;
    color:#1d9277;
    background-color: #1d9277;
    text-decoration: none;
    margin-left: auto;
    margin-right: auto;
    background-color: #FEF7FF;
    border:none;
    text-align: center;
    display: flex;
    justify-content: center;
    font-size:medium;
    font-weight:800;
}

#calculate:hover{
    background-color: #fffb1c;
    cursor: pointer;
  }

#output {
    font-size: x-large;
    text-align: center;
    font-weight: 1000;
}

footer{
    color: #016C53;
    min-width: 100%;
    text-align: center;
    padding-bottom:2rem;
}
