


html, body {
  margin: 0;
  height: 100%;
}

* {
  font-family: 'Raleway', sans-serif;
  box-sizing: border-box;
}

.top-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
  background-color: #303030;
  color: #FFF;
  height: 70px;
  padding: 1em;
}

.menu {
  display: flex;
  flex-direction: row;
  list-style-type: none;
  margin: 0;
  padding: 0;
  z-index: 1;
}

.menu > li {
  margin: 0 0.5rem;
}

.menu li a{
    font-size: 17px;
    font-weight: 700;
    padding: 15px 25px;
    background: #0081e2;
    border-radius: 5px;
    text-decoration: none;  
    color: aliceblue;
}

.menu-button-container {
  display: none;
  height: 100%;
  width: 30px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#menu-toggle {
  display: none;
}

.menu-button,
.menu-button::before,
.menu-button::after {
  display: block;
  background-color: #fff;
  position: absolute;
  height: 4px;
  width: 30px;
  transition: transform 500ms cubic-bezier(0.23, 1, 0.32, 1);
  border-radius: 2px;
}

.menu-button::before {
  content: '';
  margin-top: -8px;
}

.menu-button::after {
  content: '';
  margin-top: 8px;
}

#menu-toggle:checked + .menu-button-container .menu-button::before {
  margin-top: 0px;
  transform: rotate(45deg);
}

#menu-toggle:checked + .menu-button-container .menu-button {
  background: rgba(255, 255, 255, 0);
}

#menu-toggle:checked + .menu-button-container .menu-button::after {
  margin-top: 0px;
  transform: rotate(-45deg);
}

@media (max-width: 980px) {
  .top-nav{
        justify-content: space-between;
    }  
  .menu {
    display: none;
  }
  .menu-button-container {
    display: flex;
  }
  .menu {
    position: absolute;
    top: 0%;
    margin-top: 50px;
    left: 0;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;
  }
  #menu-toggle ~ .menu li {
    height: 0;
    margin: 0;
    padding: 0;
    border: 0;
    transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
  }
  #menu-toggle:checked ~ .menu li {
    border: 1px solid #333;
    height: 2.5em;
    padding: 0.5em;
    transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
  }
    #menu-toggle:checked ~ .menu {
        display: flex;
    }
  .menu > li {
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0.5em 0;
    width: 100%;
    color: white;
    background-color: #222;
  }
  .menu > li:not(:last-child) {
    border-bottom: 1px solid #444;
  }
    
  .menu li a{
      padding: 0;
      background: none;
}   
    
}
.wrapper {
    margin-bottom: 20px;
}

.flex-container{
    margin: auto;
    margin-top: 10px;
    display: flex;
    background: #303030;
    flex-direction: column;
    width: 95%;
    border-radius: 10px;
    max-width: 1900px;
    
}

.flex-block {
    height: 100%;
}

.flex-block:nth-child(2) {
    min-height:100px;
}

.flex-block:nth-child(2) span{
    font-size: 30px;
    padding: 20px;
    border: 4px dashed #0081e2;
/*    font-style: oblique;*/
    font-weight: 800;
}

.flex-block:nth-child(3) {
    min-height:100px;
}

.flex-item{
    text-align: center;
    padding-top: 30px;
    padding-bottom: 30px;
    text-transform: uppercase;
    color: aliceblue;
}


.flex-item a{
    text-decoration: none;
    background: #0081e2;
    color: aliceblue;
    padding: 25px 35px;
    font-size: 25px;
    border-radius: 15px;
    font-weight: 800;
}

.container{
    max-width: 1980px;
    margin:auto;
    padding-bottom: 10px;   
}


.content {
    max-width: 93%;
    margin: auto;
    line-height: 20px;
    font-size: 18px;
    box-shadow: 0px 0px 1px 2px #303030; 
    padding: 10px;
}

.content h2 {
    text-transform: uppercase;
    text-align: center;
    line-height: 30px;
}

table {
    table-layout: fixed;
    width: 100%;
    border-collapse: collapse;
    border: 3px solid #303030;
    margin-bottom: 10px;
}

th, td {
   border: 1px solid #303030;
   padding: 15px;
} 

tr {
    word-wrap: break-word;
}

@media screen and (max-width: 380px){
    .flex-item h1{
        font-size: 30px;
    }
    .flex-item a{
        padding: 30px 15px;
        font-size:20px;
    }
    .content {
        padding: 5px;
    }

    .content h2 {
        font-size: 20px;
    }
}



