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


html {
    background: url("https://source.unsplash.com/7LNatQYMzm4/1600x900") no-repeat
      center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
  }

header {
    padding: 20px;
}

li {
    list-style: none;
  }

body{
      height: 100vh;
      font-family: "Josefin Sans", sans-serif;
  }

h1 {
    text-align: center;
    font-size: 55px;
}

p {
    margin-top: 15px;
}

section {
    /* position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    flex-wrap: wrap; */
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: space-between;

}

h2{
    margin-top: 25px;
    font-weight:bolder;
    font-size: 30px;

}

.profileImage {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.teamContainer {
    justify-content: space-evenly;
    flex-wrap: wrap;
    display: flex;
    margin-top: 70px;
  }

.teamCard {
    width: 330px;
    height: 460px;
    margin: 20px;
    background: rgba(0,0,0,0.2);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px);
    cursor: pointer;
}

.content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    opacity: 0.7;
    transition: 0.4s;
}

.teamCard:hover {
   opacity: 1;
}

.socialMedia {
    display: flex;
    margin-top: 30px;
}

.fa-facebook-square:hover {
    transition: 0.3s ease;
    transform: scale(1.1);
}
.fa-linkedin:hover {
    transition: 0.3s ease;
    transform: scale(1.1);
}

.fa-instagram-square:hover {
    transition: 0.3s ease;
    transform: scale(1.1);
}


.imgBox {
    position: relative;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    border: 10px solid rgba(0,0,0,0.3);
}

.fab {
    color: rgb(66, 64, 64);
    font-size: 40px;
    margin: 20px
}

#samplify-logo {
    max-height: 5rem;
    padding-left: 0.2rem;
    padding-top: 0.2rem;
  }