@charset "UTF-8";
html {
  scroll-behavior: smooth;
  scroll-padding: calc(4.5rem + 1.5rem);
}

body {
  background: #313538;
  min-width: 300px;
}
body .icon {
  width: 1.75rem;
  height: 2rem;
  display: block;
}
body .hidden {
  display: none;
}
body header {
  background-color: #181a1c;
  width: 100%;
  height: 4.5rem;
  position: fixed;
  top: 0;
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
}
body header .mobile {
  display: none;
}
body header p {
  display: none;
}
body header ul {
  display: flex;
  gap: 1rem;
}
body header ul li {
  border-radius: 5rem;
  padding: 0.5rem 1rem;
  text-align: center;
}
body header ul li a {
  font-size: calc(1rem + 0.75vw);
  color: #FFFFFF;
  font-family: "Open Sans", sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: none;
}
body header ul li:hover {
  background-color: #3d4245;
}
body header ul li:hover a {
  text-decoration: underline 0.15rem;
  color: #b52e75;
}
body main {
  margin-top: 4.5rem;
  display: flex;
  flex-flow: column;
  align-items: center;
}
body main #title {
  background-image: url("../../images/backgrounds/background-title-small.jpg");
  background-position: bottom;
  background-size: cover;
  width: 100%;
  min-height: 17.5rem;
  display: flex;
  align-items: end;
}
body main #title h1 {
  margin: 1rem 2rem;
  padding: 0.5rem;
  background-color: rgba(24, 26, 28, 0.8);
  font-size: calc(1rem + 2vw);
  color: #FFFFFF;
  font-family: "Open Sans", sans-serif;
  font-weight: 500;
}
body main #content {
  background-color: #181a1c;
  width: 90%;
  margin: 2rem 0;
}
body main #content #intro, body main #content #outro {
  padding: 2.5rem;
}
body main #content #intro p, body main #content #outro p {
  font-size: calc(1rem + 0.5vw);
  color: #FFFFFF;
  font-family: "Open Sans", sans-serif;
  font-weight: normal;
  line-height: 2rem;
}
body main #content #intro h2 {
  font-size: calc(1rem + 1vw);
  color: #FFFFFF;
  font-family: "Open Sans", sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: underline;
  margin-bottom: 1.5rem;
}
body main #content #intro p {
  margin-bottom: 1rem;
}
body main #content #intro p:last-child {
  padding-bottom: 1rem;
  border-bottom: solid #3d4245 0.2rem;
}
body main #content #articles {
  margin: 0 5rem;
  display: flex;
  flex-flow: column;
  align-items: center;
  gap: 4rem;
}
body main #content #articles article {
  width: 100%;
  padding: 1.5rem;
  border-bottom: solid #313538 0.25rem;
  transition-duration: 1s;
}
body main #content #articles article img {
  float: left;
  max-width: 30%;
  margin: 0.25rem 1.5rem 0.125rem 2rem;
}
body main #content #articles article .text-container {
  margin: 0 2rem;
}
body main #content #articles article .text-container h2 {
  font-size: calc(1rem + 1vw);
  color: #FFFFFF;
  font-family: "Open Sans", sans-serif;
  font-weight: bold;
  margin-bottom: 1.5rem;
}
body main #content #articles article .text-container p {
  font-size: calc(1rem + 0.25vw);
  color: #FFFFFF;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  line-height: 1.75rem;
  margin-bottom: 0.5rem;
  text-align: justify;
}
body main #content #articles article:nth-child(even) img {
  float: right;
  margin: 4rem 2rem 0.125rem 1.5rem;
}
body main #content #articles article:hover {
  background-color: rgba(61, 66, 69, 0.8);
  border-bottom: solid #b52e75 0.25rem;
  transition-duration: 1s;
}
body main #content #outro {
  margin: 1.25rem 0 1.5rem 0;
}
body main #content #outro p {
  border-top: solid #3d4245 0.2rem;
  padding-top: 2rem;
}
body footer {
  background-color: #181a1c;
  width: 100%;
  display: flex;
}
body footer section {
  padding: 1.5rem;
}
body footer section h2 {
  font-size: calc(1rem + 1vw);
  color: #FFFFFF;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  margin-bottom: 1rem;
}
body footer section h2:first-letter {
  text-transform: capitalize;
}
body footer #universities {
  border-right: solid #3d4245 0.125rem;
  margin: 1rem 0 1rem 1rem;
}
body footer #universities ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}
body footer #universities ul li a {
  width: 7rem;
  height: 7rem;
}
body footer #universities ul li .logo-howest {
  width: 10rem;
  background-image: url("../media/logos/logo-howest.png");
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
}
body footer #universities ul li .logo-university-skövde {
  background-image: url("../media/logos/logo-university-skövde.png");
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
}
body footer #students {
  width: 100%;
  margin: 1rem 1rem 1rem 0;
}
body footer #students ul {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
}
body footer #students ul li {
  border-radius: 3rem;
  padding: 0.5rem 1rem;
}
body footer #students ul li a {
  font-size: calc(1rem + 0.7vw);
  color: #FFFFFF;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  display: flex;
  flex-flow: column;
  align-items: center;
  gap: 1rem;
}
body footer #students ul li a img {
  border-radius: 100%;
  height: 10rem;
}
body footer #students ul li:hover {
  background-color: #3d4245;
}
body footer #students ul li:hover a {
  text-decoration: underline 0.15rem;
  color: #b52e75;
}

@media (max-width: 900px) {
  body header {
    justify-content: space-between;
  }
  body header .mobile {
    display: block;
  }
  body header p {
    display: block;
    font-size: calc(1rem + 1rem);
    color: #FFFFFF;
    font-family: "Open Sans", sans-serif;
    font-weight: bold;
    margin-left: 2rem;
  }
  body header #nav {
    background-color: #181a1c;
    position: absolute;
    top: 0;
    right: 0;
    height: 100vh;
    width: 15rem;
    transition: 0.4s;
  }
  body header #nav div {
    width: 100%;
    height: 4.5rem;
    display: flex;
    justify-content: right;
    align-items: center;
  }
  body header #nav div .close {
    margin-right: 2rem;
    background-image: url("../media/icons/close.svg");
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center;
  }
  body header #nav div .close:hover {
    background-image: url("../media/icons/close-hover.svg");
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center;
  }
  body header #nav ul {
    flex-flow: column;
    margin: 0 4rem 0 1rem;
    gap: 1.5rem;
  }
  body header #nav ul li {
    text-align: center;
  }
  body header #nav.closed {
    width: 0;
  }
  body header .menu {
    margin-right: 2rem;
    background-image: url("../media/icons/menu.svg");
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center;
  }
  body header .menu:hover {
    background-image: url("../media/icons/menu-hover.svg");
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center;
  }
  body main #title h1 {
    text-align: center;
  }
  body main #content {
    width: 95%;
  }
  body main #content #articles {
    margin: 0;
    align-items: center;
    gap: 2.5rem;
  }
  body main #content #articles article, body main #content #articles article:nth-child(even) {
    width: 92.5%;
    padding: 1rem 0;
    display: flex;
    flex-flow: column;
    align-items: center;
    gap: 2rem;
    background-color: rgba(61, 66, 69, 0.8);
    border-bottom: solid #b52e75 0.25rem;
  }
  body main #content #articles article img, body main #content #articles article:nth-child(even) img {
    float: none;
    margin: 0;
    max-width: 90%;
  }
  body main #content #articles article .text-container, body main #content #articles article:nth-child(even) .text-container {
    width: 80%;
  }
  body main #content #articles article .text-container h2, body main #content #articles article:nth-child(even) .text-container h2 {
    margin-bottom: 1rem;
  }
  body main #content #articles article .text-container p, body main #content #articles article:nth-child(even) .text-container p {
    text-align: start;
    line-height: 1.5rem;
  }
  body main #content #outro {
    margin: 1.25rem 0;
  }
  body footer {
    flex-flow: column;
    align-items: center;
  }
  body footer section h2 {
    margin-bottom: 2rem;
  }
  body footer #universities {
    width: 80%;
    margin: 0;
    padding-bottom: 3rem;
    border-right: none;
    border-bottom: solid #3d4245 0.2rem;
  }
  body footer #students {
    width: 80%;
    margin: 0;
    padding: 3rem 0;
  }
  body footer #students ul {
    align-items: center;
    gap: 1rem;
  }
  body footer #students ul li {
    width: 10rem;
    margin-bottom: 1rem;
  }
  body footer #students ul li a {
    font-size: 1.75rem;
  }
  body footer #students ul li a img {
    height: 12.5rem;
  }
}

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