body{
    background-color: rgb(44, 44, 44);
    margin: 0;
    padding: 0;
}
#title{
    font-family: Arial;
    color: white;
    font-size: 2.75em;
    text-align: center;
    margin-bottom: 8px;
    text-shadow: 2px 2px 4px rgb(0, 0, 0, 0.465);
}
.content{
    width: 803px;
    margin: auto;
    margin-top: 10vw;
    text-align: center;
}
.radiocontainer{
    display: inline-flex;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 3px 4px 5px rgb(0, 0, 0, 0.465);
    width: 100%;
}
.radio{
    display: none;
}
.radiolabel{
    cursor:pointer;
    text-align: center;
    font-family: Arial;
    line-height: 40px;
    font-size: 1.655em;
    background-color: #62e9f8;
    transition: background 0.15s;
    width: 100%;
    height: 40px;
}
.radiolabel:not(:last-of-type){
    border-right: 2px solid black;
}
.radio:hover + .radiolabel{
    background-color: #ABFAA9;
}
.radio:checked + .radiolabel{
    background-color: #ABFAA9;
}
.inputcontainer{
    margin-top: 20px;
    height: 120px;
    width: 100%;
    text-align: center;
    line-height: 100px;
    font-size: 2em;
    display: flex;
}
#symbol{
    flex: 2;
    font-family: arial;
    align-self: center;
    font-size: 3em;
    color: white;
    text-shadow: 2px 2px 2px rgb(0, 0, 0, 0.465);
}
.input{
    width: 250px;
    margin-left: 50px;
    margin-right: 50px;
    margin-top: 20px;
    height: 70px;
    font-size: 1.5em;
    border-radius: 10px;
    border: none;
    box-shadow: 5px 6px 4px rgb(0, 0, 0, 0.465);
    box-sizing: border-box;
    padding: 7px
}
#calcular{
    height: 70px;
    width: 200px;
    background-color: #62e9f8;
    margin-top: 10px;
    border: none;
    border-radius: 10px;
    box-shadow: 5px 6px 2px rgb(0, 0, 0, 0.465);
    font-family: Arial;
    font-weight: bolder;
    font-size: 1.75em;
    cursor: pointer;
}
#calcular:hover{
    background-color: #ABFAA9;
}
#resultado{
    font-family: Arial;
    font-size: 2em;
    color: white;
    text-align: center;
}
.pageradiocontainer{
    display: inline-flex;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 1px 2px 4px rgb(0, 0, 0, 0.4);
    margin-bottom: 35px;
}
.pageradio{
    display: none;
}
.pageradiolabel{
    background-color: #62e9f8;
    font-family: arial;
    font-size: 0.9em;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.075s;
    padding: 10px;
    padding-top: 2px;
    padding-bottom: 2px;
    text-align: center;
    line-height: 100%;
}
.pageradiolabel:not(:last-of-type){
    border-right: 1px solid black;
}
.pageradio:hover + .pageradiolabel{
    background-color: #ABFAA9;
}
.pageradioactive{
    background-color: #ABFAA9;
}
#selectoptions{
    font-family: arial;
    font-weight: bold;
    width: 30%;
    height: 35px;
    text-align: center;
    font-size: 1em;
    border: none;
    border-radius: 5px;
    box-shadow: 1px 2px 5px rgb(0, 0, 0, 0.5);
    background-color: #62e9f8;
}
.option{
    font-family: arial;
    font-weight: bold;
    line-height: 35px;
}
footer{
    width: 100%;
    font-family: arial;
    font-weight: bold;
    position: fixed;
    bottom: 0;
    left: 0;
}
.footera{
    float: right;
    margin-right: 5px;
    color: black;
    text-decoration: none;
}
.footera:hover{
    color: white;
}
.footerp{
    margin: 0;
    margin-bottom: -17px;
    margin-left: 5px;
}