*{
    box-sizing: border-box;
}
body{
    background-color: #668a8f;
    /* background-color: hsl(0, 0%, 0%); */
    font-size: 1em;
    color: hsl(0, 0%, 100%);
    font-family: "Poppins", "Roboto";
    font-weight: bold;
    background-color: -;
}
.navbar{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100px;
}
.navbar img{
    width: 150px;
    height: 50px;
}
.navbar ul{
    display: flex;
    list-style-type: none;
}
.navbar ul li{
    color: hsl(0, 100%, 96%);
    margin: 10px;
    font-size: 1.5em;
    text-decoration: underline;
}
.middle{
    background-image:url(./resources/img-mission-background.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 500px;
    border: 1px solid white;
}
.mission{
    position: relative;
    top: 200px;
    align-items: center;
    background-color: hsla(320, 3%, 53%, 0.959);
    /* background-color: hsla(291, 85%, 87%, 0.87); */
    width: 100%;
    height: 130px;
    text-align: center;
    padding: 2px;
}
.mission h2{
    font-size: 1.9em;
}
.mission p{
   font-size: 18px; 
}
.tea{
    width: 1200px;
    text-align: center;
}
.tea h2{
    font-size: 30px;
    padding-top: 10px;
}
.tea h3{
    padding-bottom: 10px;
}
.tea p{
    font-size: 20px;
    padding-bottom: 30px;
}
.images{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
     /* align-content: center;  */
    column-gap: 20px;
    row-gap: 20px;
} 
img{
    width: 300px;
    height: 200px;
    border-radius: 5px;
}
img:hover{
    border: 2px solid white;
    transform: scale(1.2, 1.2);
}
.locations{
    background-image: url(./resources/locations-background.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 500px;
}
.locations h2{
    padding-top: 15px;
    text-align: center;
    font-size: 30px;
}
.location h3{
    font-size: 1.5em;
}

.location{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    column-gap: 20px;
}
.locale{
    width: 21%;
    /* border: 1px solid black; */
    background-color: hsla(320, 3%, 53%, 0.959);
    /* background-color: hsla(0, 0%, 0%, 0.952); */
    padding: 10px;
    text-align: center;
    position: relative;
    top: 70px;
}
 .locale:hover{
    border: 2px solid white;
    transform: scale(1.1, 1.1);
} 
.subfooter{
    text-align: center;
    font-size: 18px;
}
.subfooter a{
    text-decoration: none;
    color: white;
}