@font-face {
  font-family: Atletico;
  src: url("../fonts/Atletico.otf");
}
* {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: underline;
  font-weight: bold;
  color: #ffcd00;
  font-style: italic;
}

body {
  font-family: "Open Sans", sans-serif;
  background: #000000;
  scroll-behavior: smooth;
  color: white;
}

@font-face {
  font-family: Atletico;
  src: url("../fonts/Atletico.otf");
}
* {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: underline;
  font-weight: bold;
  color: #ffcd00;
  font-style: italic;
}

body {
  font-family: "Open Sans", sans-serif;
  background: #000000;
  scroll-behavior: smooth;
  color: white;
}

nav {
  display: flex;
  flex-direction: column;
  background: #000000;
  transition: opacity 500ms ease-in-out;
  z-index: 1000000;
}
nav .mtuLogo {
  display: flex;
  color: #ffcd00;
  font-family: Atletico;
  text-decoration: none;
  margin: 20px 20px 0;
  font-style: normal;
  align-items: center;
  flex-direction: column;
}
nav .mtuLogo img {
  width: 200px;
  align-self: center;
  justify-self: center;
  max-height: 140px;
  object-fit: contain;
  display: block;
}
nav .mtuLogo .mtuText {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
nav .mtuLogo .mtuText span {
  display: block;
  font-size: 2.5em;
}
nav ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  list-style: none;
  margin: 20px;
  justify-content: space-evenly;
  align-items: center;
}
nav ul li {
  background: #ffcd00;
  margin: 5px 0;
  border-radius: 5px;
  width: 40vw;
}
nav ul li a {
  text-decoration: none;
  color: #000000;
  display: block;
  font-style: normal;
  width: 100%;
  text-align: center;
  padding: 10px 0;
  font-weight: bold;
}
nav ul li .active {
  background: white;
  border-radius: 5px;
}
@media (min-width: 1080px) {
  nav .mtuLogo {
    flex-grow: 1;
    max-width: 300px;
  }
  nav ul {
    flex-grow: 1;
    justify-content: space-around;
    max-width: 1000px;
  }
  nav ul li {
    width: unset;
  }
  nav ul li a {
    border-radius: 5px;
    padding: 10px 20px;
    width: unset;
    transition: background-color 250ms ease-in-out;
  }
  nav ul li a:hover {
    background-color: white;
  }
}

@media (min-width: 1080px) {
  nav {
    position: sticky;
    top: 0;
    flex-direction: row;
    height: 20vh;
    align-items: center;
    justify-content: space-around;
  }
}
main {
  display: flex;
  flex-direction: column;
  align-items: center;
}
main h1 {
  font-family: Atletico;
  font-size: 4em;
  font-weight: bold;
  color: #ffcd00;
}
main .container {
  width: 80vw;
}
main .container article {
  margin: 40px 0;
  display: flex;
  flex-direction: column;
  border-bottom: solid #ffcd00 4px;
}
main .container article .title {
  font-family: Atletico;
  color: #ffcd00;
  margin-bottom: 8px;
}
main .container article .date {
  color: #ffcd00;
}
main .container article .content {
  margin: 16px 0;
}
main .container article img {
  width: 100%;
  align-self: center;
  margin-bottom: 40px;
  max-height: 40vh;
  object-fit: contain;
}

@media (min-width: 1080px) {
  main .container {
    width: 60vw;
  }
  main .container article .title {
    font-size: 2em;
  }
  main .container article .date {
    font-size: 1.5em;
  }
  main .container article .content {
    font-size: 1.25em;
  }
}

/*# sourceMappingURL=news.css.map */
