@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    width: 100%;
    height: 100%;
}

body {
    background: #35363a;
}

@media screen and (min-width: 900px) {
   .tiledBackground {
        background-image: url(./img/banner1920x1080.jpeg);
        background-size: cover;
        background-position: center;
      }
  }


  
@media screen and (max-width: 900px) {
    .tiledBackground {
         background-image: url(./img/banner640x960.jpeg);
         background-size: cover;
         background-position: center;
       }
   }
