.body{
  margin-left: 10%;
  margin-right: 10%;
}

.animated-welcome-text{
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-size: 50px;
  text-align: center;
}

nav{
  background-color: #333;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  margin: 0 auto;
}

.nav-buttons ul, .nav-social ul{
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-buttons li, .nav-social li{
  margin: 0 15px;
  font-size: 20px;
}

@media screen and (max-width: 1000px) {
  .nav-buttons ul, .nav-social ul {
    flex-direction: column;
    align-items: center;
  }

  .container{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-size: 20px;
    margin-left: 0;
    margin-right: 0;
  }
}

.nav-social img, #mode-icon{
  width: 30px;
  height: 30px;
  border-radius: 50%;
}

a{
  text-decoration: none;
  color: #fff;
}

nav a:hover{
  background-color: #444;
}

.toggle-mode {
  display: flex;
  align-items: center;
  gap: 8px;
}

.dark-mode{
  background-color: #333;
  color: #fff;
}

h1{
  text-align: center;
  font-size: 50px;
  padding: 20px 20px 20px 0px;
  animation: fadeInText 5s ease forwards;
  opacity: 0;
}

h2, h3{
  text-align: center;
  font-size: 40px;
  padding: 20px 20px 20px 0px;
  animation: fadeInText 5s ease forwards;
  opacity: 0;
}

h4, h5, h6{
  text-align: center;
  font-size: 30px;
  padding: 20px 20px 20px 0px;
  animation: fadeInText 5s ease forwards;
  opacity: 0;
}

p{
  text-align: center;
  font-size: 20px;
  padding: 20px 20px 20px 0px;
  animation: fadeInText 5s ease forwards;
  opacity: 0;
}

.container{
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  margin-left: 10%;
  margin-right: 10%;
  flex-direction: row;
  animation: fadeInText 5s ease forwards;
  opacity: 0;
}

.about-image{
  max-width: 50vw;
  max-height: 40vh;
  width: 300px;
  height: 400px;
  margin: 0 20px;
  border-radius: 30%;
}

.about-image-2{
  max-width: 50vw;
  max-height: 35vh;
  width: 400px;
  height: 300px;
  margin: 0 20px;
  border-radius: 30%;
}

.like-button{
  background-color: #333;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 20px;
  margin-left: 18%;
}

.like-button img{
  width: 30px;
  height: 30px;
  margin-right: 10px;
}

.animated-welcome-text{
  animation: fadeInText 5s ease forwards;
  opacity: 0;
}

@keyframes fadeInText{
  from{
    opacity: 0;
  }
  to{
    opacity: 1;
  }

}