@import url('https://fonts.googleapis.com/css2?family=Signika:wght@400&display=swap');

body {
    background-color: #f2efea;
}

.navbar {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    padding-top: 2vh;
    font-family: 'Signika', sans-serif;
}

.navbar a:visited {
    color: black;
}

.navbar a {
    text-decoration: none;
    color: black;
}

#back a {
    color: teal;
    font-weight: bold;
    font-size: 1.1em;
}

.emphasis {
    font-weight: bold;
    font-size: 1.1em;
    padding-right: 5%;
}

#content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#titleRow {
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    font-family: 'Signika', sans-serif;
    font-size: 200%;
    margin-top: 5%;
    font-weight: bold;
}

#contact {
    display: flex;
    justify-content: left;
    flex-direction: row;
    font-family: 'Signika', sans-serif;
    margin-top: 1%;
    margin-left: 8%;
}

#contact td {
    min-width: 20%;
    padding-top: 1%;
}

#footer {
    display: flex;
    justify-content: space-evenly;
    font-family: 'Signika', sans-serif;
    flex-direction: row;
    margin-top: 5%;
}

#footer a {
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
}

.resumeRow {
    font-family: 'Signika', sans-serif;
    margin-top: 2%;
    display: flex;
    flex-direction: column;
    justify-content: left;
    margin-left: 15%;
    margin-right: 15%;
    margin-bottom: 3%;
}

.institution {
    font-weight: bold;
    font-size: 1.25em;
    margin-top: 1%;
}

.details {
    font-size: 1.05em;
    margin-top: 1%;
}

.date {
    font-style: italic;
}

.contentRow {
    font-family: 'Signika', sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: left;
    margin-left: 15%;
    margin-right: 15%;
}

.listHeader {
    font-weight: bold;
    font-size: 1.05em;
}

.list {
    font-size: 0.95em;
}

.list li {
    padding: 0.5%;
}

#description {
    display: flex;
    justify-content: center;
    flex-direction: column;
    font-family: 'Signika', sans-serif;
    margin-top: 2%;
}

#description p {
    display: flex;
    justify-content: center;
    margin-left: 15%;
    margin-right: 15%;
}

#smallTitle {
    font-weight: bold;
    font-size: 1.25em;
    margin-top: 1%;
    display: flex;
    text-align: left;
    margin-left: 15%;
    margin-right: 15%;
}

.accordion {
    background-color: #eee;
    color: #444;
    cursor: pointer;
    padding: 3%;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-family: 'Signika', sans-serif;
    font-weight: bold;
    font-size: 1.05em;
    transition: 0.4s;
  }
  
  .active, .accordion:hover {
    background-color: #ccc;
  }
  
  .accordion:after {
    content: '\002B';
    color: #777;
    font-weight: bold;
    float: right;
    margin-left: 1%;
  }
  
  .active:after {
    content: "\2212";
  }
  
  .panel {
    padding: 0 18px;
    background-color: #f2efea;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
  }

  .panel li {
    padding: 0.75%;
    font-size: 1.10em;
  }