@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%;
}

#contact {
    display: flex;
    justify-content: center;
    flex-direction: row;
    font-family: 'Signika', sans-serif;
    margin-top: 5%;
    margin-left: 10%;
    margin-right: 10%;
}

#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%;
    margin-bottom: 5%;
}

#footer a {
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
}

.sticky {
    position: fixed;
    top: 1%;
    width: 100%;
    z-index: 30;
}

.resumeRow {
    font-family: 'Signika', sans-serif;
    margin-top: 2%;
    display: flex;
    flex-direction: column;
    justify-content: left;
    margin-left: 8%;
    margin-right: 8%;
    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: 8%;
    margin-right: 8%;
}

.listHeader {
    font-weight: bold;
    font-size: 1.05em;
}

.list {
    font-size: 0.95em;
}

.list li {
    padding: 0.5%;
}