html {
    box-sizing: border-box;
    font-size: 10px;
    background: url('VALBKGD1.png') no-repeat center;
  }
  
  *, *:before, *:after {
    box-sizing: inherit;
  }
  
  body {
    padding: 0;
    margin: 0;
    font-family: 'valorantFont';
    cursor: crosshair;

  }

  
  h1 {
    text-align: center;
    font-size: 10rem;
    line-height: 1;
    margin-bottom: 0;
  }
  
  .score {
    background: rgba(255,255,255,0.2);
    padding: 0 3rem;
    line-height: 1;
    border-radius: 2rem;
  }
  
  .game {
    width: 1200px;
    height: 600px;
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto;
  }
  
  .hole {
    flex: 1.5 0 15%;
    margin: 40px;
    overflow: hidden;
    position: relative;
  }
  
  .hole:after {
    display: block;
    background: url('Frame1.png') bottom center no-repeat;
    background-size: contain;
    content: '';
    width: 100%;
    height:70px;
    position: absolute;
    z-index: 2;
    bottom: -30px;
  }
  
  .target {
    background: url('target.png') bottom center no-repeat;
    background-size: 60%;
    position: absolute;
    top: 100%;
    width: 100%;
    height: 100%;
    transition:all 0.4s;
  }
  
  .hole.up .target {
    top: 0;
  }

  @font-face{
      font-family: valorantFont;
      src: url('Valorant Font.ttf');
  }

  div{
      font-family: valorantFont;    
  }
  
  .button {
    background-color: #dbe2db; 
    color: rgb(0, 0, 0);
    padding: 15px 32px;
    text-align: center;
    display: inline-block;
    font-size: 25px;
    font-family: valorantFont;
  }

  canvas {
      width: 100%;
      height: 100%;
      border: 1px solid white;
  }

 .navbar {
  overflow: hidden;
  background-color: #1C1D21;
}

.navbar a {
  float: left;
  font-size: 19.5px;
  color: white;
  text-align: center;
  font-family: valorantFont;
  padding: 15px;
  text-decoration: none;
  border-bottom: 3px solid transparent;
  transition: all 0.6s;
}


.navbar a:hover {
  border-bottom: 3px solid red;
  letter-spacing: 5px;
}
