@font-face {
  font-family: "gilroy";
  src: url("Gilroy-ExtraBold.ttf");
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  width: 100%;
}


body {
  text-align: center;
  background-color: #283149;
  color: #ffffff;
}

#title {
  font-size: 5rem;
  color: #DBEDF3;
  font-family: "Arvo", cursive;
  text-shadow: 3px 0 #DA0463;

}

footer {
  color: #DBEDF3;
  font-family: sans-serif;
}

.w {
    background-image: url("tom1.png");
}

.a {
  background-image: url("tom2.png");
}

.s {
  background-image: url("tom3.png");
}

.d {
  background-image: url("tom4.png");
}

.j {
  background-image: url("snare.png");
}

.k {
  background-image: url("crash.png");
}

.l {
  background-image: url("kick.png");
}

.set {
  margin: 10% auto;
}

.game-over {
  background-color: red;
  opacity: 0.8;
}

.pressed {
  box-shadow: 0 3px 4px 0 #DBEDF3;
  opacity: 0.5;
}

.red {
  color: red;
}

.drum {
  outline: none;
  border: 10px solid #404B69;
  font-size: 5rem;
  font-family: 'Arvo', cursive;
  line-height: 2;
  font-weight: 900;
  color: #DA0463;
  text-shadow: 3px 0 #DBEDF3;
  border-radius: 15px;
  display: inline-block;
  width: 150px;
  height: 150px;
  text-align: center;
  margin: 10px;
  background-color: white;
}


.main {
  height: 100%;
  width: 100%;
  position: relative;
  overflow-x: hidden;
}


#page1 {
  height: 100%;
  width: 100%;
}

#nav {
  width: 100vw;
  height: 10vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#nav1 {
display: flex;
align-items: center;
width: 50%;
height: 100%;
font-size: 1.5vmax;
font-family: "Arvo", cursive;
text-transform: uppercase;
-webkit-text-stroke-color: orange;
-webkit-text-stroke-width: 0.6px;

}

#nav1:hover {
  border: 1px solid white;
}

#nav1 img{
  height: 75px;
  width: 75px;
  border-radius: 50%;
  margin: 10px 15px;
}

#nav2 {
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 50%;
  height: 100%;
  font-family: gilroy;
  position: relative;
}

#nav2:hover {
  border: 1px solid white;
}

#nav2 #menu i ul {
  display: none;
  position: absolute;
  top: 50%;
  right: 3%;
  list-style: none;
  width: 12.5vw;
  height: 150px;
  margin: 15px;
  background-color: #331D2C;
  font-family: gilroy;
  border-radius: 5%;
  text-align: center;
}

#menu i ul li{
  margin-right: 29px;
  margin-top: 6px;
}

#menu i ul li:hover{
  background-color: #000;
}

#mobile{
  display: none;
}


#nav2 a {
  text-decoration: none;
  color: white;
}

h4 {
  cursor: pointer;
  font-size: 15px;
}

hr {
  border: 1px #ffffff;
  border-style: dotted;
  width: 100vw;
  margin-top: 0;
}

@media (max-width: 600px){

#nav1 img{
  height: 50px;
  width: 50px;
}

#page1 {
  z-index: 1;
}

#nav2 {
  justify-content: flex-end;
}

#nav2 #mobile {
  font-weight: 800;
  display: inline-block;
  padding: 0px 25px;
}

#mobile ul{
  list-style: none;
  display: none;
  color: white;
  position: absolute;
  width: 120px;
  text-align: right;
  height: 240px;
  top: 100%;
  background-color: #331D2C;
  font-family: gilroy;
  right: 25%;
  border-radius: 5%;
}

#mobile li{
  margin: 8px;
}

#mobile li:hover{
  background-color: #000;
}

#mobile-menu ul{
  background-color: red;
  height: 300px;
  width: 200px;
}

#nav2 h4{
  display: none;
  background-color;
}

}