* {
  margin: 0em;
  font-family: "Inter", sans-serif;
  padding: 0px;
}
.header {
  position: fixed;
  z-index: 1000;
  width: 100%;
  background: transparent;
  padding: 32px;
}
.active {
  background-color: white;
}

.logo {
  height: 32px;
  width: 63px;
  background-image: url("assets/images/logo.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
}

.container {
  background-image: linear-gradient(to bottom, #d7eefe, #f9fafe);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 100px 80px 32px 80px;
}

@media screen and (max-width: 768px) {
  
  .container {
    background-image: linear-gradient(to bottom, #d7eefe, #f9fafe);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 128px 32px 16px 32px;
  }

  .img {
    width: 100%;
    height: 100%;
    margin: 32px 0px 32px 0px;
    justify-content: center;
    flex-direction: row;
    align-items: center;
  }

  .intro {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    margin-left: 32px;
    margin-right: 32px;
  }
}

.intro {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-right: 32px;
}

.img {
  background-image: url("assets/images/IMG_3583.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 75%;
  height: 400px;
  border-radius: 5%;
  /* box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1); */
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: flex-start;
}

.sub {
  font-weight: 300;
  font-size: 2em;
}

.sub-title {
  font-weight: 200;
  font-size: 1.5em;
  padding: 16px 0px;
}

.firstname {
  font-weight: 600;
  font-size: 4em;
}
.lastname {
  font-weight: 200;
  font-size: 4em;
}
