* {
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif
}

/* Style the header */
.header {
  background-color: rgb(97, 196, 73);
  padding: 30px 10px;
  margin-top: 20px;
  margin-bottom: 60px;
  text-align: center;
  font-size: 40px;
  color: white;
  font-family: Comic Sans MS
}

.banneri {
  width: 100%;
  margin-top: 10px;
}

/* Column */
.column {
  background-color: rgb(97, 196, 73);
  padding: 20px;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 20px; 
}

#left {
  background-color: rgb(223, 255, 224);
  text-align: justify;
  padding: 10px;
  flex: 1;
}

#right {
  background-color: rgb(223, 255, 224);
  text-align: center;
  padding: 10px;
  flex: 1;
  font-size: 20px;
}

/* Space for trailer */
.trailer > iframe {
  background-color: rgb(255, 255, 255);
  height: 700px;
  width: 100%;
}

/* Game info */
.gameinfo {
  background-color: rgb(255, 255, 255);
  width: 100%;
  padding-left: 10px;
  padding-right: 10px;
}

.pitch {
  background-color: rgb(97, 196, 73);
  text-align: center;
  padding: 10px;
  font-size: 20px;
  margin-top: 80px;
}
.medium {
  font-size: 40px;
}

.small {
    font-size: 20px;
}

.row pt-4 text-center {
  font-size: 60px;
}

h2 {
    padding-top: 100px;
    font-size: 70px;
    text-align: center;
}

h3 {
    padding-top: 100px;
    padding-bottom: 50px;
    font-size:35px;
    text-align: center;
}

h4 {
  padding-top: 30px;

}
.teamlogo {
    display: flex;
    margin-left: auto;
    margin-right: auto;
    width: 500px;
    margin-bottom: 50px;
    margin-top: 30px;
}

.footer {
    text-align: justify;
    margin: auto;
    padding: auto;
}

/* unvisited link */
a:link {
  color: black;
  background-color: transparent;
  text-decoration: none;
}

/* visited link */
a:visited {
  color: rgb(0, 0, 0);
  background-color: transparent;
  text-decoration: none;
}

/* mouse over link */
a:hover {
  color: rgb(67, 159, 212);
  background-color: transparent;
  text-decoration: underline;
}

/* Responsive layout - when the screen is less than 800px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 800px) {
  .column, .section {   
    width: 100%;
    padding: 20px;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 800px) {
  .teamlogo {
    display: flex;
    width: 100%;
    
  }
}
/* Responsive layout - when the screen is less than 1000px wide, make the trailer and gameinfo stack on top of each other instead of next to each other */
@media screen and (min-width: 1000px) {
    #content {
        display: flex;
    }
    #left {
        flex: 1;
        
    }
    #right {
        flex: 1;
    }
}
