/*
Colors
- light blue = #1874cd
- dark blue = #2b4f81
- dark grey = #333333
*/

* {
  padding: 0px;
  margin: 0px;
  top: 0px;
  bottom: 0px;
  box-sizing: border-box;
  font-family: Blinker, sans-serif;
}

ul {
  list-style-position: inside;
}

body {
  background-color: #cccccc;
  color: #000000;
}

.container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#contact {
  list-style: none;
}

h2 {
  font-weight: normal;
}

@media only screen and (min-width: 0px) {
  * {
    font-size: 14px;
  }
}

@media only screen and (min-width: 150px) {
  .information-block {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .information-logo-container {
    width: 110px;
    height: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .information-logo {
    width: 100%;
    height: 100%;
    background: url('logo.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

  .information-title {
    margin-top: 15px;
    width: 80%;
    font-weight: bold;
  }

  .information-subtitle {
    width: 80%;
  }

  .information-text {
    margin-top: 15px;
    width: 80%;
  }

  .background-image {
    margin: 15px 0px 50px;
    width: 80%;
    height: 125px;
    background: url('zeecontainer.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 10px;
  }
}

@media only screen and (min-width: 250px) {
  * {
    font-size: 16px;
  }

  .information-logo-container {
    width: 220px;
    height: 30px;
  }

  .background-image {
    height: 200px;
  }
}

@media only screen and (min-width: 350px) {
  * {
    font-size: 18px;
  }

  .information-block {
    margin-top: 35px;
  }

  .information-title {
    margin-top: 25px;
    width: 330px;
  }

  .information-subtitle {
    width: 330px;
  }

  .information-text {
    margin-top: 25px;
    width: 330px;
  }

  .information-logo-container {
    width: 330px;
    height: 45px;
  }

  .background-image {
    margin: 25px 0px 50px;
    width: 330px;
    height: 225px;
  }
}

@media only screen and (min-width: 550px) {
  .information-block {
    margin-top: 25px;
    margin-bottom: 25px;
    background-color: #999999;
    width: 500px;
    padding: 20px;
    border-radius: 10px;
  }

  .information-title {
    width: 100%;
  }

  .information-subtitle {
    width: 100%;
  }

  .information-text {
    margin-top: 25px;
    width: 100%;
  }

  .information-logo-container {
    width: 440px;
    height: 60px;
  }

  .information-logo {
    width: 396px;
    height: 54px;
    transition: all 0.15s;
  }

  .information-logo:hover {
    width: 100%;
    height: 100%;
  }

  .background-image {
    width: 400px;
    height: 300px;
    box-shadow: -10px 10px 5px #7F7F7F;
  }
}

@media only screen and (min-width: 1050px) {
  * {
    font-size: 20px;
  }

  .container {
    flex-direction: row;
    justify-content: center;
  }

  .information-block {
    width: 600px;
    padding: 30px 75px 30px 30px;
  }

  .information-logo-container {
    width: 484px;
    height: 66px;
  }

  .information-logo {
    width: 440px;
    height: 60px;
  }

  .background-image {
    margin: 25px 0px;
    position: relative;
    left: -35px;
  }
}

@media only screen and (min-width: 1050px) and (min-height: 900px) {
  .information-block {
    margin-top: 35px;
    margin-bottom: 35px;
  }

  .background-image {
    margin: 35px 0px;
  }
}
