body {
    margin: 0;
    padding: 1em;
    box-sizing: border-box;
    font-family: 'Ibarra Real Nova', serif;
    font-weight: 5px;
    background-color: #000;
    color: #fff;
    font-size: 1.2em;
    scroll-behavior: smooth;
}
#logo{
    display: flex;
    justify-content: center;
    height: 30vh;
}
#description a, .data a{
    color: rgb(255, 255, 255);
}
#description{
    object-fit:contain;
    padding: 1em;
    height: 100vh;
    width: 40%;
}
.data{
    width: 45%;
    object-fit:contain;
    padding: 1em;
}
#gallery {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
}
#gallery img {
    width: 45%;
    object-fit:contain;
    padding: 1em;
}
.playbutton{
    font-style: normal;
    font-weight: bold;
    font-size: 0.75em;
    font-family: Arial, Helvetica, sans-serif;
}
@media (max-width: 900px) {
    #gallery img {
      width: 100%;
  }
    #description{
      width: 100%;
  }
    #logo{
      width: 100%;
  }
}
