
/* Universal Styles START*/
body{
  display: flex;
  flex-direction: column;
  align-items: center;
}

ol{
  text-align: left;
  align-self: normal;
  list-style-type: decimal;
}

ol ol {
  list-style-type: upper-alpha;
}

ul{
  text-align: left;
  align-self: normal;
}

.directory{
  list-style: none;
  padding: 100px;
  display: flex;
  gap: 20px;
  align-self: center;
}

label{
  margin-bottom: 5px;
  padding-right: 5px;

}

.portfolioDir ul{
  text-align:left;
  list-style: none;
}
/* Universal Styles END*/



/* Style for Personal Webpage START*/

.emphasis {
  font-style: italic;
}

.strong {
  font-weight: 700;
}

.underline {
  text-decoration: underline;
}

.h2About {
  color: #6597cf;
}

.h2Hobbies {
  color: #65cf9e;
}

.h2Education {
  color: #cf6565;
}

.hoverLink{
  font-size: 100%;
  transition: font-size 0.2s ease;
}

.hoverLink:hover{
  font-size: 150%;
}



/* Style for Personal Webpage END*/

/* Style for Schedule START*/

table {
  text-align: center;
}

th {
  background-color: blue;
  color: white;
}

tbody tr:nth-child(odd) {
  background-color: lightgray;
}




/* Style for Schedule END*/


/* Style for Account Creation START*/

.container {
  display: block;
  position: relative;
  padding-left: 25px;
  margin-bottom: 0px;
  cursor: pointer;
  font-size: 14px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.container input:checked ~ .checkmark {
  background-color: #2196F3;
}
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 10px;
  width: 10px;
  border: black solid 1px;
  background-color: grey;
}

.radio {
  position: absolute;
  top: 0;
  left: 0;
  height: 15px;
  width: 15px;
  background-color: grey;
  border-radius: 50%;
  border: black solid 1px;
}

.radio:after {
  content: "";
  position: absolute;
  display: none;
}
.container input:checked ~ .radio {
  background-color: #2db86b;
}

.container input:checked ~ .radio:after {
  display: block;
}



/* Style for Account Creation END*/
