@import url('https://fonts.googleapis.com/css2?family=Allura&family=Josefin+Sans:wght@100;400&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: 'Josefin Sans', sans-serif;
    background-color: blanchedalmond;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

header{
    padding-top: 15px;
    text-align: center;
    height: auto;
}

nav{
    margin-top: 5px;
    background-color: rgba(0, 0, 0, 0.336);
    height: auto;
    text-align: center;
    padding-top: 5px;
    padding-bottom: 15px;
    font-size: x-large;
}
a{
    color: whitesmoke;
    text-decoration: none;
}

main{
    margin-top: 5px;
    background-color: cadetblue;
}
.wrapper h1{
    padding-top: 15px;
    font-family: 'Allura', cursive;
    font-size: 52px;
    margin-bottom: 60px;
    text-align: center;
}
.team{
    display: flex;
    text-align: center;
    width: auto;
    justify-content: center;
    flex-wrap: wrap;
}
.team .team_member{
    background-color: #fff;
    margin: 5px;
    margin-bottom: 50px;
    width: 300px;
    padding: 20px;
    line-height: 20px;
    color:black;
    position: relative;
}
.team .team_member h3{
    color: cadetblue;
    font-size: 26px;
    margin-top: 50px;
}
.team .team_member p.role{
    text-transform: uppercase;
    text-decoration: solid;
    margin: 12px 0;
}
.team .team_member .team_img{
    width: 100px;
    height: 100px;
    border-radius: 50%;
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
}
.team .team_member .team_img img{
    width: 100px;
    height: 100px;
}

#myCarousel{
    padding-top: 5px;
}
.carousel-item{
    height: 400px;
    background: #000;
    color: #fff;
    position: relative;
}
.contain{
    text-align: center;
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding-bottom: 50px;
}
.overlay-img{
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    top: 0;
    background-position: center;
    background-size: cover;
    opacity: 0.6;
}

.map{
    margin-top: 20px;
    text-align: center;
}

footer{
    text-align: center;
    background-color: rgba(255, 255, 255, 0.862);
}

#alex{
    text-align: center;
    color: #000;
}