@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@900&display=swap');
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
    transition: 0.5s;
  }
  


/*HEADER NAVBAR*/

.header-nav{
  height: 100vh;
  width: 100%;
  position: relative;
  background-color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  overflow: hidden;
}

#particles-js{
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 0.3;
}

h1{
  color: #f2f2f2;
  font-family: 'Raleway', sans-serif;
  font-size: 50px;
  margin-bottom: 2rem;
  z-index: 2;
  pointer-events: none;
}

.button{
  padding: 10px 18px;
  border: 1px solid #f2f2f2;
  background-color: transparent;
  color: #f2f2f2;
  text-decoration: none;
  font-family: Arial, Helvetica, sans-serif;
  border-radius: 20px;
  outline: none;
  cursor: pointer;
  z-index: 2;
}

.button:hover{
  color: #000000;
  background-color: #f2f2f2;
}

#logo-solo{
  width: 60px;
  height: 100px;
}




/*--RESPONSIVE HEADER--*/

@media screen and (max-width: 480px) {
  h1{
    font-size: 40px;
  }
}

@media screen and (max-width: 370px) {
  h1{
    font-size: 30px;
  }

  #logo-solo{
    margin-top: -80px;
  }
  
}

