* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

h1 {
    text-align: center;
}

body {
    background-color: #91DDF2;
}

.header-with-picture img {
    border-radius: 1rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
    width: 200px;
}

.about-me-container {
    background-color: #7ABACC;
    border-radius: 1rem;
    padding-bottom: 10px;
    padding-left: 20px;
    padding-right: 10px;
}

.about-me-container h2 {
    Color: #fffdd0 
}

.about-me-container a:hover{
    font-size: 150%;
}

.about-me-container ol img {
  height: 220px;
  width: 150px;
  object-fit: cover;

}

.about-me-container .opp, .stalk, .itmfl {
    margin-bottom: 40px;
}

.about-me-container .content {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.about-me-container .content p {
    max-width: 500px;
    font-size: 15px;
}

.about-me-container ol, ul {
    padding-left: 30px;
}

.schedule-table table, th, tr, td{
    border: 1px solid black;
    text-align: center;
}

.schedule-table th {
    background-color: red;
}

.schedule-table tr:nth-child(odd) {
    background-color: #7ABACC;
}

.important-events {
    padding-top: 10px;
}

.important-events ol {
    padding-left: 30px;
}

.important-events footer {
    padding-top: 5px;
}

.important-events ol ol {
    list-style-type: upper-latin;
}

.Enterable-Area {
    display: flex;
    gap: 10px;
    width: 300px;
}

.input-area label{
    display: block;
    text-align: left;
    margin-bottom: 4px;
    font-weight: bold;
}

.input-area input {
    width: 200%;
    padding: 2px;
    margin-bottom: 2px;
    box-sizing: border-box;
}

.container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
}

.container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #ccc;
}

.container:hover input ~ .checkmark {
    background-color: rgb(170, 184, 197);
}

.programming-language-container .container input:checked ~ .checkmark {
    background-color: blue;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.container input:checked ~ .checkmark:after {
    display: block;        
}

.container .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.column-one {
    float: left;
}

.column-two {
    padding-left: 300px;
}

.radio-container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
}

.radio-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.selected {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: gray;
    border-radius: 50%;
}

.radio-container:hover .selected {
    background-color: rgb(111, 110, 110);
}

.selected:after {
    content: "";
    position: absolute;
    display: none;
}

.radio-container input:checked ~ .selected:after {
    display: block;
}

.radio-container .selected:after {
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: green;
    border-radius: 50%;
}