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

body {

    background-color: black;
    text-align: center;
}

h1{
    padding: 2%;
    font-family: "Bowlby One SC";
    font-size: 5vh;
    color: white;
    
}

h2{
  padding: 1%;
  font-size: medium;
  color: white;
}

p{
  padding: 1%;
  font-size: medium;
  color: white;
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-weight: 400;
}

a{
    text-decoration: none;
    font-family:Verdana, Geneva, Tahoma, sans-serif;
  }
  figure video, img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
  }
  .zoom {
    transition: transform 0.2s;
  } 
  .zoom:hover {
    transform: scale(1.1);
  }
  @media screen and (max-width: 600px) {

    h1{
      font-size: 35px;
    }
    a {
      font-size: 15px;
    }
    }
    p{
    }
  