* {
  margin: 0px 5px;
  padding: 0px;
  box-sizing: border-box;
  max-height: 95vh;
}


body {
  margin: 1px 0;
  font-family: sans-serif;
  background-color: white;
  transition: background-color 0.3s ease-in-out;
  filter: blur(25px);
}

.container {
  height: 100vh;
  display: flex;
  flex-direction: column;
}

.header {
  display: flex;
  flex-direction: row;
  height: 10%;
  align-items: center;
  justify-content: space-between;
}

.header__logo {
  font-size: 4vw;
  font-weight: 100;
}

.header__menu {
  display: flex;
  flex-direction: row;
  font-size: 2vw;
  gap: 15px;
  margin-top: 5px;
}

.header__menu-0 {
  user-select: none;
  cursor: pointer;
  /* box-shadow: inset 0 0 10px 10px black, 0 0 10px 5px black; */
  /* filter: brightness(10%); */
  border-width: 10px;
  border-radius: 50%;
}

.header__menu a {
  text-decoration: none;
}

.main {
  display: flex;
  flex-direction: row;
  height: 85%;
  padding: 0;
}

.main__image {
  background-image: url('../img/Portrait.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  height: 80%;
  width: 40%;
  margin: auto;
  transition: filter 1.5s;
}

.main__text {
  width: 60%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

.main__text span {
  color: red;
}

.main__text-1 {
  font-size: 8vw;
}

.main__text-2,
.main__text-3,
.main__text-4 {
  font-size: 2.8vw;
}

.main__text-5 {
  font-size: 1.8vw;
}

.main__text-6 {
  font-size: 1.2vw;
  text-align: center;
}

#home,
#portfolio,
#contact,
#resume {
  color: black;
}

.footer {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 0.5%;
  margin-top: 1%;
  height: 10%;
}

.footer [class^='footer__'] img {
  width: 5.3vw;
}

@media (orientation: portrait) {
  .main {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  /* .main__image {
        margin: -10%;
    }
    .header {
        margin-bottom: -10%;
    } */
  .main__image {
    margin-top: 0px;
    margin-bottom: 0px;
    width: 60%;
  }
  .footer {
    justify-content: center;
    margin: 25px;
  }
  .footer [class^='footer__'] img {
    width: 75px;
    height: 75px;
  }
}

@media (max-height: 640px) and (max-width: 360px) {
  .main__image {
    display: none;
  }
}

@media (max-width: 650px) {
  .header {
    justify-content: center;
    flex-direction: column;
  }
  .header__logo {
    font-size: 40px;
    margin-top: 5%;
  }
  .header__menu {
    font-size: 3.5vw;
  }
  /* .header__menu {
        display: none;
    } */
  .main {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .main__image {
    background-image: url('../img/Portrait.png');
    height: 200px;
    width: 200px;
    background-size: 100%;
    border-radius: 100%;
    background-position: center;
    margin: 10%;
  }
  .main__text {
    width: 100%;
  }
  .main__text-1 {
    /* display: none; */
    font-size: 5vw;
  }
  .main__text-2,
  .main__text-3,
  .main__text-4 {
    font-size: 30px;
  }
  .main__text-5 {
    font-size: 20px;
  }
  .main__text-6 {
    font-size: 8px;
  }
  .footer {
    justify-content: center;
    margin: 25px;
  }
  .footer [class^='footer__'] img {
    width: 35px;
    height: 35px;
  }
}

@media (max-width: 480px) {
  .main {
    margin: 0;
    padding: 0;
  }
  .main__image {
    height: 200px;
    width: 200px;
    margin-top: 20px;
  }
  .main__text-3 {
    font-size: 25px;
  }
  .main__text-4 {
    font-size: 22px;
  }
  .main__text-5 {
    font-size: 16px;
  }
  .main__text-6 {
    font-size: 8px;
  }
}

@media (max-width: 382px) {
  .main__text-3 {
    font-size: 22px;
  }
  .main__text-4 {
    font-size: 20px;
  }
}

@media (max-width: 370px) {
  .main__text {
    text-align: center;
  }
  .header__logo {
    font-size: 32px;
    text-align: center;
  }
  .main__text-4 {
    font-size: 20px;
  }
  .footer {
    justify-content: center;
    margin: 35px;
  }
  .footer [class^='footer__'] img {
    width: 25px;
    height: 25px;
  }
}
