@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
* {
  box-sizing: border-box;
  color: black;
  list-style: none;
  margin: 0px;
  font-family: "Roboto", sans-serif;
  font-weight: 200;
  font-size: 18px;
  letter-spacing: 2px;
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  overflow-y: auto;
}

.containermomPC {
  display: flex;
  background-color: white;
  width: 100vw;
  height: 700px;
}

.containerheaderPC {
  position: absolute;
  background-color: #132624;
  width: 100vw;
  height: 300px;
}

.containericonPC {
  position: absolute;
  background-color: white;
  width: 400px;
  height: 400px;
  left: 50%;
  transform: translateX(-50%);
  top: 7em;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.containertitlePC {
  position: absolute;
  background-color: white;
  width: 500px;
  height: 120px;
  left: 51%;
  transform: translateX(-50%);
  top: 30em;
}

.titleA,
.titleB,
.titleC {
  width: 500px;
  background-color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
}

.titleA {
  font-weight: 300;
  font-size: 24px;
  height: 30px;
}

.titleB {
  font-weight: 300;
  font-size: 50px;
}

.titleC {
  font-weight: 200;
  font-size: 24px;
}

nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: white;

  display: flex;
  justify-content: space-between;
  padding: 1em 5em; 
  box-sizing: border-box;

  z-index: 10; 
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown a {
  text-decoration: none;
  background-color: white;
  padding: 8px 12px;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  bottom: 100%;
  left: 0;
  background-color: white;
  min-width: 120px;
  box-shadow: 0px -8px 16px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.dropdown-content a {
  padding: 12px 16px;
  display: block;
  color: black;
  text-decoration: none;
}

.dropdown-content a:hover {
  background-color: #ddd;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown:hover > a {
  text-decoration: line-through;
}
@media screen and (max-width: 768px) {
  * {
    font-size: 16px;
    letter-spacing: 1px;
  }

  .containermomPC {
    flex-direction: column;
    height: auto;
  }

  .containerheaderPC {
    height: 200px;
    position: relative;
  }

  .containericonPC {
    width: 400px;
    height: 400px;
    top: 5em;
    border-radius: 50%;
    background-color: white;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .containertitlePC {
    width: 90%;
    height: auto;
    left: 50%;
    transform: translateX(-50%);
    position: relative;
    top: 19em;
  }

  .titleA,
  .titleB,
  .titleC {
    width: 100%;
    text-align: center;
  }

  .titleA {
    font-size: 18px;
    height: auto;
  }

  .titleB {
    font-size: 32px;
  }

  .titleC {
    font-size: 18px;
  }

  nav {
    flex-direction: row;
    width: 90%;
    margin: 0 auto;
    align-items: center;

    position: fixed;
    bottom: 0;
    left: 5%;
    background-color: white;
    padding: 0.5em 0;
    z-index: 10;
  }

  .dropdown a {
    padding: 10px;
    font-size: 16px;
  }

  .dropdown-content {
    position: absolute;
    box-shadow: none;
    display: none;
    width: 100%;
    bottom: 100%;
    font-size: 9px;
  }

  .dropdown:hover .dropdown-content {
    display: block;
  }
}
.profile-pic {
  border-radius: 50%;
  width: 400px;
  height: 400px;
  vertical-align: middle;
  object-fit: cover;
}

