* {
  box-sizing: border-box;
}

body {
  background-color: black;
  margin: 0;
  font-family: sans-serif;
}

div.page-padding {
  max-width: 1200px;
  margin: 0 auto;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
}

h1 {
  font-size: 50px;
  font-weight: bold;
}

h2 {
  font-size: 100px;
  font-weight: bold;
  text-transform: uppercase;
}

h3 {
  font-size: 30px;
  font-weight: bold;
  color: #E30000;
  text-transform: uppercase;
}

header {
  position: fixed;
  z-index: 5;
  top: 0;
  width: 100%;
  background-color: black;
  color: #E30000;

  .page-padding {
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 2rem;

    a {
      img {
        width: 160px;
        z-index: 4;
      }
    }
  
    nav {
      .navbar-toggler {
        display: none;
      }

      ul {
        list-style-type: none;
        display: flex;
        column-gap: 2rem;
        align-items: center;
        padding: 0;
  
        li {
          display: flex;
          align-items: center;
          a {
            color: #E30000;
            font-size: 24px;
            font-weight: bold;
            text-decoration: none;
            border-radius: 5px;

            p {
              margin: 0;
            }
  
            &:hover {
              color: white;
            } 
          }
        }

        li.last-item {
          border: 2px outset #E30000;
          border-radius: 5px;
          padding: 10px;

          a {
            padding: 0;
            margin: 0;
            p {
              margin: 0;
            }
          }
        }
      }
    }
  }
}

footer {
  padding: 1rem;
  background: #141414;
  
  .page-padding {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 1rem;

    .luisteren {
      padding-top: 1rem;
      display: flex;
      column-gap: 2rem;

      img {
        width: 65px;
        height: 65px;
      }
    }

    .footer-links {
      display: flex;
      column-gap: 2rem;
      justify-content: center;
      align-items: center;

      ul {
        padding: 0;
        list-style: none;
        display: flex;
        column-gap: 5rem;
        flex-wrap: wrap;

        a {
          color: white;
          text-decoration: none;
          font-size: 24px;
          font-weight: bold;
  
          &:hover {
            color: #E30000;
          }
        }
      }

    }

    p {
      color: white;
      font-size: 18px;

      a {
        text-decoration: none;
        color: white;
      }
    }
  }
}

.notfound {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 55vh;
  color:white;

  .page-padding {
    display: flex;
    flex-direction: column;
    row-gap: 2rem;
    align-items: center;
    justify-content: center; 

    a {
      color: white;
      text-decoration: none;

      &:hover {
        color: white;
      }
    }
  }
}

.button {
  background-color: #E30000;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 24px;
  font-weight: bold;
  text-decoration: none;
  transition: .4s;

  &:hover {
    box-shadow: #ff0808 0px 0px 10px;
  }
}

@media only screen and (max-width: 850px) {
  header {

    .page-padding {
      align-items: center;
      width: calc(100% - 2rem);
      margin-left: 0.5rem;

      a {
        img {
          width: 100px;
          z-index: 4;
        }
      }

      nav {
        .navbar-toggler {
          display: block;
          border: 1px solid #E30000;
          position: absolute;
          right: 16px;
          top: 2rem;
          z-index: 3;
          transform: translateY(-8px);

          &:focus {
            outline: none;
            box-shadow: #E30000 0px 0px 10px;
          }
        }

        .desktop-menu {
          display: none;
        }
    
        ul {
          flex-direction: column;
          row-gap: 1rem;
          justify-content: unset;
          width: 100%;
          background-color: black;
          /* position: absolute; */
          top: 0;
          right: 0;
          padding: 1rem;
          padding-top: 100px;
          z-index: 2;
    
          li {
            padding: 0;
            height: 4rem;
            a {
              font-size: 20px;
              padding: 5px;
            }
          }
        }
      }
    }
  }

  footer {
    .page-padding {
      .luisteren {
        row-gap: 1rem;
        align-items: center;
      }

      .footer-links {
        ul {
          row-gap: 1rem;
          align-items: center;
          justify-content: center;

          li {
            width: 100px;
            text-align: center;

            a {
              font-size: 20px;
            }
          }
        }
      }
    }
  }

  .notfound {
    height: 70vh;
    .page-padding {
      h1 {
        font-size: 28px;
      }
    }
  }

  .button {
    padding: 5px 10px;
    font-size: 20px;
  }
}