/* Custom font import */
@font-face {
  font-family: "Ogg";
  src: url("https://cdn.glitch.global/0fe9d9d6-9ca6-4ae6-bdcf-bf0ecdce5475/Ogg-RegularItalic.ttf?v=1681052031194");
}

/* Body styling */
body {
  margin: 3em;
}

/* Container for centered layout */
.container {
  width: 600px;
  margin: 0 auto;
  background-color: yellow;
}

/* Content wrapper */
div#content {
  margin: 3em;
}

/* Top menu */
div#menu {
  width: 100%;
  margin: 25px 20px 0 20px;
  position: relative;
  float: left;
}

/* Headings */
h1 {
  font-family: "Ogg", serif;
  font-style: italic;
  color: black;
  font-size: 25px;
  margin-top: 3px;
}

/* Paragraphs */
p {
  font-family: Helvetica, sans-serif;
  font-weight: normal;
  color: black;
  margin: 80px 20px 0 20px;
  font-size: 14px;
}

/* Images */
img,
video {
  max-width: 300px;
  margin: 20px auto;
  display: block;
}

/* Responsive image class */
.responsive {
  max-width: 500px;
  width: auto;
  height: auto;
  display: block;
  margin: 20px auto;
}

/* Centered picture container */
.centrepic {
  position: relative;
  text-align: center;
}

/* Links */
a {
  font-family: Helvetica, sans-serif;
  font-style: italic;
  color: black;
  font-size: 14px;
  text-decoration: none;
}

/* Top right banner */
.topright {
  position: absolute;
  right: 50px;
  top: 35px;
  width: 7%;
  height: auto;
  background: url(TRbanner.gif) no-repeat;
  text-indent: -999em; /* hides text */
}

/* Image/video description text */
div.desc {
  padding: 20px;
  text-align: center;
  font-family: "Arial", sans-serif;
}

/* MEDIA QUERIES */
@media screen and (max-width: 1000px) {
  div#menu {
    margin: 25px 20px 20px 20px;
  }

  .responsive {
    max-width: 300px;
    width: 100%;
    min-width: 300px;
    height: auto;
    margin: 20px auto;
    display: block;
  }

  h1 {
    font-size: 15px;
  }

  body {
    background-color: white;
  }

  img {
    width: 300px;
    margin: 20px auto;
    display: block;
  }
}
