* {
  margin:0;
  padding:0;
  box-sizing: border-box;
}

header {
  height: 64px;
  background-color: rgba(242, 242, 242, 1);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#dropDownIcon {
  display: none;
}

#navigation {
  width: 200px;
  margin-right: 16px;
  display: flex;
  justify-content: space-between;
}

#navigation a {
  color:rgba(29, 53, 87, 1);
  text-decoration: none;
  font-family: "Open Sans";
  font-style: normal;
  font-size: 16px;
  font-weight: 600;
}

#logoAsLink {
  display: flex;
  align-items: center;
}

#supportUkrainebanner {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(84, 116, 201, 1);
  color: rgba(242, 242, 242, 1);
  font-family: "Open Sans";
  font-style: normal;
  font-size: 14px;
}

#supportUkrainebanner p {
  margin-right: 10px;
}

#flagOfUkraine {
  width: 30px;
  height: auto;
  margin: 10px;
}

#linkToTheSupport {
  color: rgba(242, 242, 242, 1);
}

#keymLogo {
  margin-left: 8px;
  width: 132px;
  height: 32px;
}

#bodyOfThePage {
  background-color: rgba(242, 242, 242, 1);
  color: rgba(29, 53, 87, 1);
  height: 800px;
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 600;
  font-size: 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 100px;
}

#bodyOfThePage p {
  margin-top: 20px;
  margin-bottom: 20px;
  text-align: center;
}

#gears {
  width: 450px;
  height: 450px;
}


footer {
  height: 67px;
  background-color: rgba(29, 53, 87, 1);
  color: rgba(242, 242, 242, 1);
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
}

@media only screen and (max-width: 1024px) {
  footer {
    font-size: 16px;
  }
}

@media only screen and (max-width: 768px) {
  footer {
    font-size: 12px;
  }
}

@media only screen and (max-width: 480px) {
  #supportUkrainebanner {
    height: 64px;
  }

  #supportUkrainebanner p {
    font-size: 12px;
    text-align: justify;
  }

  #dropDownIcon {
    display: block;
    margin-right: 10px;
  }

  #navigation {
    display: none;
  }

  #bodyOfThePage {
    padding-top: 25px;
  }

  #gears {
    width: 300px;
    height: 300px;
  }
}
