.background {
  width: 100%;
  height: auto;
}

.logo {
  position: absolute;
  width: 23%;
  left: 50px;
  top: 30px;
}

.menu a {
  width: 170px;
  height: 20px;
  font-family: Arial;
  font-size: 20px;
  text-align: center;
  background: #1cb0e6;
  color: white;
  text-decoration: none;
  padding: 3px 0px;
  margin-left: 5px;
  border-radius: 10px;
  font-weight: bold;
  box-shadow: 1px 4px #fff;
  transition: 0.3s ease all;
}

.menu a:hover {
  transform: scale(1.05);
  transition: 0.3s ease-in-out;
}

.menu a:active {
  transform: scale(0.9);
}

.menu {
  position: absolute;
  right: 1em;
  top: 2rem;
  width: 67%;
  display: flex;
  margin: 1px;
  justify-content: space-between;
  align-items: center;
}

.apply-section {
  position: absolute;
  right: 20px;
  top: 120px;
  width: 50%;
}

.blue {
  font-family: arial;
  letter-spacing: 0.5em;
  font-size: 15px;
  text-align: center;
  color: #1cb0e6;
  font-weight: bold;
  margin-top: 20px;
  margin-bottom: 0;
}

.purple {
  font-family: "Chango", sans-serif;
  font-size: 3rem;
  text-align: center;
  color: rgba(0, 17, 128, 0.912);
  font-weight: bold;
  margin-top: 0px;
  margin-bottom: 0;
}

button {
  width: 30%;
  height: 80px;
  font-family: "Chango", sans-serif;
  font-size: 20px;
  border: 15px solid rgba(0, 17, 128, 0.912);
  border-radius: 4px;
  background-color: red;
  color: #fff;
  margin-left: 35%;
  transition: 0.3s ease-in-out;
  margin-top: 10px;
}

button:hover {
  transform: scale(1.03);
  transition: 0.3s ease-in-out;
}

button:active {
  transform: scale(0.9);
}

a {
  color: #fff;
  text-decoration: none;
}

@media (max-width: 1024px) {
  .menu {
    width: 67%;
    height: 20px;
    right: 1em;
    top: 1rem;
  }

  .menu a {
    font-size: 15px;
    height: 15px;
    margin: 2px;
    padding-top: 3px;
    padding-left: 0px;
    padding-right: 0px;
  }

  .logo {
    width: 21%;
    left: 10px;
  }

  .apply-section {
    right: 110px;
    top: 60px;
    width: 35%;
  }

  .blue {
    font-size: 10px;
  }

  .purple {
    font-size: 2rem;
  }

  button {
    width: 30%;
    height: 50px;
    font-size: 15px;
    margin-top: -2px;
    border: 6px solid rgba(0, 17, 128, 0.912);
  }
}

@media (max-width: 768px) {
  .menu {
    width: 77%;
    height: 10px;
    right: 0.5em;
    top: 1rem;
  }

  .menu a {
    height: 6px;
    margin: 1px;
    padding-top: 3px;
    padding-left: 0px;
    padding-right: 0px;
    font-size: 10px;
  }

  .logo {
    top: 15px;
  }

  .apply-section {
    right: 100px;
    top: 45px;
    width: 30%;
  }

  .blue {
    font-size: 8px;
  }

  .purple {
    font-size: 1rem;
  }

  button {
    width: 30%;
    height: 40px;
    font-size: 6px;
    padding-left: 2px;
    border: 7px solid rgba(0, 17, 128, 0.912);
  }
}

@media (max-width: 480px) {
  .menu {
    width: 90%;
    height: 10px;
    right: 0.9em;
    top: 1rem;
  }

  .menu a {
    height: 5px;
    margin: 1px;
    padding-top: 3px;
    padding-left: 0px;
    padding-right: 0px;
    font-size: 8px;
    border-radius: 7px;
  }

  .apply-section {
    right: 50px;
    top: 25px;
    width: 30%;
  }

  .blue {
    font-size: 5px;
  }

  .purple {
    font-size: 0.6rem;
  }

  button {
    margin-top: -3px;
    width: 20%;
    height: 25px;
    font-size: 6px;
    border: 3px solid rgba(0, 17, 128, 0.912);
    padding-left: 2px;
  }
}