@font-face {font-family: Barlow; font-weight: 100; font-style: normal; src: url(../fonts/Barlow-Thin.ttf);}
@font-face {font-family: Barlow; font-weight: 200; font-style: normal; src: url(../fonts/Barlow-ExtraLight.ttf);}
@font-face {font-family: Barlow; font-weight: 300; font-style: normal; src: url(../fonts/Barlow-Light.ttf);}
@font-face {font-family: Barlow; font-weight: 400; font-style: normal; src: url(../fonts/Barlow-Regular.ttf);}
@font-face {font-family: Barlow; font-weight: 500; font-style: normal; src: url(../fonts/Barlow-Medium.ttf);}
@font-face {font-family: Barlow; font-weight: 600; font-style: normal; src: url(../fonts/Barlow-SemiBold.ttf);}
@font-face {font-family: Barlow; font-weight: 700; font-style: normal; src: url(../fonts/Barlow-Bold.ttf);}
@font-face {font-family: Barlow; font-weight: 800; font-style: normal; src: url(../fonts/Barlow-ExtraBold.ttf);}
@font-face {font-family: Barlow; font-weight: 900; font-style: normal; src: url(../fonts/Barlow-Black.ttf);}
@font-face {font-family: Barlow; font-weight: 100; font-style: italic; src: url(../fonts/Barlow-ThinItalic.ttf);}
@font-face {font-family: Barlow; font-weight: 200; font-style: italic; src: url(../fonts/Barlow-ExtraLightItalic.ttf);}
@font-face {font-family: Barlow; font-weight: 300; font-style: italic; src: url(../fonts/Barlow-LightItalic.ttf);}
@font-face {font-family: Barlow; font-weight: 400; font-style: italic; src: url(../fonts/Barlow-RegularItalic.ttf);}
@font-face {font-family: Barlow; font-weight: 500; font-style: italic; src: url(../fonts/Barlow-MediumItalic.ttf);}
@font-face {font-family: Barlow; font-weight: 600; font-style: italic; src: url(../fonts/Barlow-SemiBoldItalic.ttf);}
@font-face {font-family: Barlow; font-weight: 700; font-style: italic; src: url(../fonts/Barlow-BoldItalic.ttf);}
@font-face {font-family: Barlow; font-weight: 800; font-style: italic; src: url(../fonts/Barlow-ExtraBoldItalic.ttf);}
@font-face {font-family: Barlow; font-weight: 900; font-style: italic; src: url(../fonts/Barlow-BlackItalic.ttf);}



* {
  box-sizing: border-box;
}

html {
  font-size:14px;
    @media (width > 720px) {
      font-size:16px;
  }
}

body {
  background-image: url("../images/circle-tile.svg");
  background-position: center;
  margin: 0% 0% 0% 0%;
  font-family: Barlow;
  font-size: 1.5rem;
}

.wrapper {
  margin: auto;
  max-width: 1080px;
}

.header {
  text-align: left;
  font-family: Barlow;
  background-color: lightgray;
  border: 1px solid black;
  line-height: 0;
}

.header a {
  color: black;
  text-decoration: none;
}

.header h1 {
  display:inline-flex;
  font-size: 4.4rem;
  margin: 0;
  padding: 0;
  line-height: 0.7;
}

.logo {
  height: 100px;
}

.marquee {
  position:relative;
  display: flex;
  overflow:hidden;
  flex-direction: row-reverse;
  border: 1px solid black;
  background-color: gray;
  color: white;
}

.marquee-item {
  --marquee-text: 500px;
  --marquee-text-small: 300px;
  display: flex;
  flex-shrink: 0;
  min-width: calc(100% + var(--marquee-text-small));
  text-align: center;
  animation-duration: 10s;
  animation-iteration-count: infinite;
  animation-name: marquee-content;
  animation-timing-function: linear;
  @media (width > 720px) {
    min-width: calc(100% + var(--marquee-text));
    animation-duration: 15s;
  }
}

.marquee-item p {
  width: var(--marquee-text-small);
  font-size: 1rem;
  padding: 0;
  margin: 0;
  @media (width > 720px) {
    width: var(--marquee-text);
    font-size: 1.5rem;
  }
}

@keyframes marquee-content {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0%);
  }
}

.with-sidebar {
  display: grid;
  gap: 0rem;
  @media (width > 720px) {
    gap: 0rem;
    grid-template-columns: 300px 1fr;
  }
}

.sidebar {
  border: 1px solid black;
  background-color: lightgray;
}

.about {
  border-bottom: 1px solid black;
}

.links {
  display: none;
  @media (width > 720px) {
      display: inline;
  }
}

.content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 0rem;
}

.single {
  border: 1px solid black;
  background-color: lightgray;
  overflow-x: hidden;
}

.single table {
  width: 100%;
  border-collapse: collapse;
  background-color: rgb(236, 236, 236);
  padding: 1rem;
}

.single caption,th,td {
  padding: 0.25rem;
}

.single caption,th {
  text-align: left;
}

.single caption {
  background-color: rgb(187, 187, 187);
  font-weight: 700;
  text-transform: uppercase;
}

th {
  background-color: rgb(214, 214, 214);
}

tr:nth-of-type(2n) {
  background-color: rgb(224, 224, 224)
}

.profilepic {
  display: block;
  max-width: 50%;
  height:auto;
  margin: auto;
}

.image {
  display: block;
  max-width: 100%;
  height:auto;
  margin: auto;
}

.caption {
  text-align: center;
}

video {
  max-width: 100%;
  height: auto;
}

.post {
  border: 1px solid black;
  background-color: lightgray;
  padding: 0% 5%;
}

.post h2:after
{
    content:' ';
    display:block;
    border:2px solid black;
}

.post img {
  display: block;
  max-width: 85%;
  margin: auto;
}