* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
#body {
    width: 100vw;
    height: 100vh;
    font-family: Helvetica;
    font-size: 22PX;
    color: seashell;
    background-color: black;
    opacity: 0.9;
    justify-content: center;
    
}
#header {
    background-color: black;
   display: flex;
   flex-direction: row;
   justify-content: flex-end;
   align-items: center;
   position: fixed;
   width: 100%;
   height: 69px;
   border-bottom: 1px solid seashell;
   z-index: 3;
}
.navbar ul {
  display: flex;
  gap: 20px; 
  
}
.navbar ul li {
    list-style: none;
    
}
li a {
    color: seashell;
}
.logo {
    position: absolute;
    left: 10px;
    height: 50px;
}
#one {
    margin: 0px auto;
    background-image: url("img-mission-background.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    top: 69px;
    width: 1200px;
    height: 700px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: -1;
}
.intro {
    width: 100%;
    background-color: black;
    text-align: center;
    padding: 10px;
}
.mainheading {
    margin-bottom: 20px;
}
#two {
    margin: 0px auto;
    position: relative;
    width: 1000px;
    top: 69px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
    
}
.question {
    margin-top: 20px;
}
.tile {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
    margin-bottom: 50px;
}
.tile img {
    width: 300px;
    height: 200px;
}
#three {
    margin: 0px auto;
    position: relative;
    width: 1200px;
    height: 500px;
    top: 69px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-image: url("img-locations-background.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;

}
.locations {
    display: flex;
    flex-direction: row;
    margin-top: 15px;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;

}
.address {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-content: space-evenly;
    border: 1px solid black;
    width: 300px;
    height: auto;
    opacity: 1;
    background-color: black;
    font-style: normal;
}
#footer {
    margin: 0px auto;
    width: 100%;
    position: relative;
    top: 69px;
    
}
footer h2 {
    margin-bottom: 30px;
}
figcaption {
    text-align: center;
}
.contact {
    margin-top: 20px;
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.copyright {
    
    margin-left: 20px;
    padding-bottom: 20px;
    
}
h5 {
    padding: 20px 0px;
}
