/*SCROLLBAR*/
  ::-webkit-scrollbar {
    width: 5px;
    height: 5px;
  }
  
  ::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.5);
  }
  
  ::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.01);
  }
/*SCROLLBAR*/

/*-------------------------------------------------------------------------------------*/

/*BASE*/
*,
::before,
::after{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Prompt', Arial, Helvetica, sans-serif;
  font-weight: 800;
}

a{
  text-decoration: none;
}
/*BASE*/

/*-------------------------------------------------------------------------------------*/

/*HEAD*/
iframe{
    height: 100vh;
}

header{
  width: 100%;
  display: flex;
  padding: 1rem;
  margin-top: -1rem;
  position: absolute;
  align-items: center;
  vertical-align: top;
  justify-content: space-between;
}

header ul li{
  float: left;
  padding: 3rem;
  list-style-type: none;
}

header ul li a{
  color: black;
  font-size: larger;
  transition: 0.2s;
  background-color: white;
  padding: 0.5rem;
  padding-left: 1rem;
  padding-right: 1rem;
  border-radius: 2rem;
}

header ul li a:hover{
  color: white;
  background-color: black;
}

#pad{
  margin-right: 1rem;
}

header div a img{
  width: 3rem;
}

#pp{
  width: 6rem;
}


@media (width <= 1085px){
  body{
    margin: 5rem;
  }
}
/*HEAD*/

/*-------------------------------------------------------------------------------------*/


/*SECTION1*/
#section1{
  position: absolute;
  color: white;
  margin-top: 35vh;
  margin-left: 5vw;
  width: 50vw;
}
#section1 h1{
  font-size: 3rem;
}
#section1 h2{
  font-size: 2rem;
}
/*SECTION1*/