
/*왼쪽 메뉴
*/

.btn-btn-dark {

  margin: 0;
  padding: 0.5rem 1rem;

  font-family: "Noto Sans KR", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  text-align: center;
  text-decoration: none;

  display: inline-block;
  width: auto;

  border: none;
  border-radius: 4px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);


  transition: 0.5s;
}
.btn-btn-dark:active,
.btn-btn-dark:hover,
.btn-btn-dark:focus {
  background: var(--button-hover-bg-color);
  outline: 0;
}
.btn-btn-dark:disabled {
  opacity: 0.5;
}


/*가사 드롭다운
*/

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 300px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  padding: 12px 16px;
  z-index: 1;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* */



nav#menu{
  position:sticky;
  top:0px:

}
#menu ul{
  list-style-type:none;
  padding-left: 0px;
  text-align: center;

}


#menu ul li{
  padding-bottom: 30px;
  padding-right: 15px;

}

.num1{
  float: left;
}

.num2 {
  margin-left: 30px;


}

.num2 img{
  height: 700px;
  width: 500px;
}

#logo{
  height: 30px;
  width: 30px;

}

.image img{
  height: 500px;
  width: 500px;
}

#menu a{
  text-decoration: none;
  color:black;

  display: block;

}

#ani {
  width: 70px;
  height: 70px;
  background-color: red;
  position: relative;
  animation: myfirst 15s linear 1s infinite alternate;
  text-align: center;
  vertical-align:text-bottom;
}

@keyframes myfirst {
  0%   { left:1800px; top:0px;}
  25%  { left:1800px; top:-700px;}
  50%  { left:1800px; top:-2100px;}
  75%  { left:1800px; top:-700px;}
  100% {left:1800px; top:0px;}
}
