
.center_aligned{
    text-align: center;
}

/*personal styles*/
.personal_header{
    color: teal;
}
.college_degree{
    font-weight : bold;
}
.highschool_diploma{
    font-style :italic;
}
.certificate{
    text-decoration: underline;
}
.peronal_hyperlinks:hover {
    font-size: 150%
}
/*class schedule styles*/
tr{
    text-align: center;
}
.table_hide{
    background-color: white;
}

tr:nth-child(odd){
    background-color: #a3f55b;
}
th{
    background-color: #af8c4c;
    text-align: center;
}
ol{
    list-style-type: decimal;
}
ol > ol > li{
    list-style-type:upper-alpha;
}
/*create account styles*/
.radiobutton{
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }

.radiobutton input{
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}
.radio_checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
    border-radius: 50%;
  }
.radiobutton input:checked ~.radio_checkmark{
    background-color: green;
}
.radiobutton input:not(:checked) ~.radio_checkmark{
    background-color: grey;
}
.checkbox{
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
.checkbox input{
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
  }
.checkbox input:checked ~ .checkmark {
    background-color: blue;
}
.checkbox input:not(:checked) ~ .checkmark{
    background-color: grey;
}
