html, body {
    background-color: black;
    color: white;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 3vh;
  }

  .btn{
  
  font-family: Roboto, sans-serif;
  font-weight: 0;
  font-size: 4vh;
  color: #ffffff;
  background-color: #0066cc00;
  padding: 1vh 3vh;
  border: solid #f9fcff00 0.3vh;
  box-shadow: rgb(0, 0, 0) 0px 0px 0px 0px;
  border-radius: 4vh;
  transition : 1000ms;
  transform: translateY(0);
  display: flex;
  flex-direction: row;
  align-items: center;
  cursor: pointer;
  }
  
  .btn:hover{
  
  transition : 1000ms;
  padding: 1vh 3vh;
  transform : translateY(-0px);
  background-color: #ffffff00;
  color: #ffffffdd;
  border: solid 0.3vh #ffffffdd;
  }
