

img{
  max-width: 100%;
  object-fit: cover;
  /* height: 100%; */
}

body{
  transition:all .3s;
  background: linear-gradient(to bottom,#ff6a00,#720400);
  height: 100vh;
}


.container{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%) scale(0.7);
}


.nickName{
  color: white;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 1rem;
}



.visual{
  /* max-height: 600px; */
  text-align: center;
  margin-bottom: 1rem;
}

.nav{
  max-width: 600px;
}

.nav ul{
  display: flex;
  gap:1rem
}

.nav ul li{
  border: 4px solid transparent;
  transition: all .3s;

}



.nav ul li.is-active{
  border: 4px solid white;
}








