
body {
  margin: 0;
  color: white;
  min-height:100vh; 
  background:linear-gradient(rgba(0,0,0,1), rgba(0,0,0,0.4)),
    url('../logo/regular_logo1.png'); 
    background-size: cover; 
    background-position: center; 
    background-repeat: no-repeat;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

/* Header */
header {
  font-size: 12px;
  padding: 16px;
  text-align: center;
}
main {
  margin-left: 10px;
}
main h1 {
  text-align: center;
  color: rgb(255, 255, 255);
}

main h2 {
    margin-left: 2px;
    color: white;
}

footer {
    color: white;
    font-size: .9em;
    text-align: center;
}

nav a {
  color: white;
  margin: 0 12px;
  text-decoration: none;
}

nav a:hover {
  text-decoration: underline;
}


.sb-track {
  display: flex;
  overflow-x: auto;
  gap: 12px;
  padding: 30px 30px;
  -webkit-overflow-scrolling: touch;
}

.game {
  flex: 0 0 auto; /*tell container to only stretch witht he info given */
  display: flex; /*tells all of the other children the contraints of the container */
  align-items: center;
  gap: 4px;
  background: #16161a;
  border: 1px solid #25252b;
  border-radius: 999px;
  padding: 6px 12px;
  color: inherit;
  text-decoration: none;
  position: relative;
}

.game:hover {
  background: #1c1c22;
}

.sep { opacity: .7; 
margin-left: 20px;
margin-right: 20px;}


.avatar{
    width: 38px;
    height: 38px;
    border-radius: 25%;
    background: #fff;
    display: grid;
    place-items: center;
    align-items: flex-end;
    overflow: hidden;
}
.gameweek {
    font-size: 12px;
    margin-top: 18px;
    white-space: nowrap;
    display: inline-block;


}
.game::before {
  content: attr(gameday);
  position: absolute;
  top: -18px;
  left: 8%;
  transform: translateX(-50%);
  font-size: 12px;
  color: #ffffff;
}

.resume_design {
  display: flex;
  gap: 20px;
  padding: 20px;
}

.columns {
  flex: 1;
  background: #16161a;
  padding: 20px;
  border-radius: 12px;
}

main address {
  text-align: center;

}

.main.abbr {
  text-align: center;
}

.classes-ul {
  list-style-type: square;
}

.professor-ul {
  list-style-image: url("../logo/check.png");
  background-size: 18px 18px;
}

.reference-ol {
  list-style-type: upper-roman
}

nav{
  width: 100%;
  text-align: center;
}

nav ul{
  margin: 20px ;
  padding: 0;
}

nav li {
  list-style: none;
}

nav a {
  display: block;
  width: 90%;
  padding: 10px;
  border: 2px solid #aaa;
  text-decoration: none;
  color: white;
  background-color: #333;
}

@media only screen and (min-width: 640px){
  nav a {
    display: inline;
    width: auto;
    padding: 10px 20px;
  }
  nav li {
    display: inline;
  }
}

img {
  max-width: 100%;
  height: auto;
}

figure {
  width: 320px;
  display: inline-block;
  margin: 25px;
  text-align: center
}

#figureContainer {
  text-align: center;
}

@media only screen and (min-width: 720px){
  figure{width: 320px; }
}

@media only screen and (min-width: 1000px){
  body{margin: auto;}
}