body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #DDD;
}

.head {
    background-color: #0a75ba;
    width: 100%;
    height: 250px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.head h1 {
    color: black;
    font-size: 100px;
    font-family: Georgia;
    text-shadow: 1px 1px 1px #FFF;
}

.head-imgs {
    margin: 0 20px 
}

.top-links {
    background-color: #2ea8a2;
    margin: 10px 20%;
    height: 30px;
    padding: 10px;
    border-radius: 15px;
    box-shadow: 0 3px 5px rgba(0,0,0,0.3);
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
}

.top-links a {
    color: #004b48;
    font-size: 25px;
    font-family: Roboto;
    
}

.top-links p {
    color: #004b48;
    font-size: 25px;
    font-family: Roboto;
    text-decoration: underline;
}

.main {
    margin: 20px 5%;
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

.side-links {
    background-color: #2ea8a2;
    flex: 1;
    border-radius: 15px;
    box-shadow: 0 3px 5px rgba(0,0,0,0.3);
    padding: 10px 20px;
    color: #004b48;
}

.side-links ul {
    margin: 5px 10px;
    font-size: 20px;
    font-family: Roboto;
}

.side-links li {
    margin: 15px 0;
}

.side-links a {
    color: #004b48;
    text-decoration: none;
}

.secondary-links ul {
    list-style: circle;
}

.secondary-links li {
    font-size: 15px
}

.content {
    background-color: white;
    flex: 4;
    border-radius: 15px;
    box-shadow: 0 3px 5px rgba(0,0,0,0.3);
    padding: 10px 20px;
}

.conf-details {
    background-color: #eee;
    margin: 10px 0;
    padding: 5px 15px;
    border-radius: 15px;
    font-family: Times;
    font-size: 18px;
}

.conf-details h3 {
    text-decoration: underline;
    margin: 5px 0;
}

.wheaton-photo {
    background-color: #0a75ba;
    border-radius: 10px;
    padding: 5px;
    height: 400px;
}



