/* STEP 10: Add style to the header */
h1 {
    text-align: center;
}

/* STEP 11: Add style to the headshot image */
img {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* STEP 12: Add custom styles to website*/
h3 {
    text-align: center;
}

body {
    font-family: 'Montserrat', sans-serif;
    margin: 10;
    font-size: 20px;

}

.citation {
    text-align: center;
    font-size: 15px;
}

table, th, td {
    border: 1px solid black;
    border-collapse: collapse;
    font-weight: 300;
}

table {
    margin-left: auto;
    margin-right: auto;
}

th, td {
    padding-left: 5%;
    padding-right: 5%;

}

.courses {
    text-align: center;
}

.languages {
    text-align: center;
}

.text-center {
    text-align: center;
}

.button {
    border: none;
    color: white;
    padding: 16px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    transition-duration: 0.4s;
    cursor: pointer;
}
  
.button1 {
    background-color: white; 
    color: black; 
    border: 2px solid #a4cae1;
}
  
.button1:hover {
    background-color: #a4cae1;
    color: white;
}

.button2 {
    background-color: white; 
    color: black; 
    border: 2px solid #a4cae1;
}
  
.button2:hover {
    background-color: #a4cae1;
    color: white;
}

.button3 {
    background-color: white; 
    color: black; 
    border: 2px solid #13294b;
}
  
.button3:hover {
    background-color: #13294b;
    color: white;
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: rgb(60, 60, 62);
    position: -webkit-sticky; /* Safari */
    position: sticky;
    top: 0;
    width: 100%;
}

li {
    float: left;
}
  
li a {
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}
  
li a:hover:not(.active) {
    background-color: #111;
}
  
.active {
    background-color: #a4cae1;
}

#footer {
    height: 40px;
}