@font-face {
    font-family: 'PT Serif';
    src: url('res/PTSerif-Regular.ttf');
    font-style: normal;
}

@font-face {
    font-family: 'Staatliches';
    src: url('res/Staatliches-Regular.ttf');
    font-style: normal;
}

@font-face {
    font-family: 'PT Serif';
    src: url('res/PTSerif-Italic.ttf');
    font-style: italic;
}

html, body {
    height: 100%;
    padding: 0px;
    overflow: hidden;
    margin: 0px;
    background-color: white;
}

#bg {
    height: 100%;
    background-image: url(res/bg.jpg); 
    background-size: cover;
    background-repeat: no-repeat;
    margin: 0px;
    display: flex;
    justify-content: center;
    align-content: center;
    flex-wrap: wrap;
}

#tag {
    margin: 0;
    align-self: flex-start;
    position: absolute;
    color: WHITE;
    font-family: 'Staatliches';
    font-size: 30px;
    filter: drop-shadow(0px 2px 1px #000);
}

#title {
    margin: 0;
    align-self: center;
    font-family: 'PT Serif';
    font-size: 80px;
    color: white;
    filter: drop-shadow(0px 4px 2px #000);
}

@media only screen and (max-width: 1179px) {
  #bg {
    background-image: url(res/bttall.jpg);
  }

  body {
    background-color: #000;
  }

  #title {
    font-size: 10vh;
    filter: drop-shadow(0px 0.5vh 0.2vh #000);
  }

  #tag {
    font-size: 3.7vh;
    filter: drop-shadow(0px 0.2vh 0.2vh #000);
  }
}