@import url('https://fonts.googleapis.com/css2?family=Lato:wght@900&family=Roboto:wght@400;500&display=swap');

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

body {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

main {
  width: 70vw;
  height: calc(100% - 60px);
  display: flex;
  align-items: center;
  flex-direction: column;
  font-family: 'Roboto', sans-serif;
}

.logo {
  margin-top: 20px;
  margin-bottom: 20px;
}

h1 {
  font-family: 'Lato', sans-serif;
  font-weight: 900;
  font-size: 38px;
  margin-bottom: 20px;
  text-align: center;
  color: #214a81;
}

p {
  margin-bottom: 30px;
  width: 60%;
  text-align: center;
  font-size: 16px;
  color: #98989b;
}

button {
  outline: none;
  border: none;
  background: #214a81;
  color: white;
  font-family: 'Roboto', sans-serif;
  font-weight: bold;
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 50px;
  margin-bottom: 50px;
  transition: background, transform 150ms ease-in-out;
}

button:hover {
  background: #1c3e6c;
  cursor: pointer;
  transform: scale(1.05);
}

.computer {
  height: 544px;
}

.computer img {
  max-width: 791px;
  max-height: 544px;
  object-fit: scale-down;
}

footer {
  width: 70vw;
  height: 60px;
  border-top: solid 1px #ccc;
  padding: 20px 0;
  text-align: center;
  font-family: 'Roboto', sans-serif;
  margin-top: 20px;
  color: #98989b;
}

@media (max-width: 768px) {
  main {
    width: 100vw;
    height: calc(100% - 10px);
  }

  footer {
    width: 100%;
  }

  .computer {
    width: 100%;
  }

  .computer img {
    width: 100%;
    object-fit: contain;
  }

}

@media (max-width: 540px) {
  .computer {
    height: 400px;
  }
}

@media (max-width: 376px) {
  .computer {
    height: 240px;
  }

  footer {
    height: 0px;
  }


  .computer img {
    top: 0px;
  }
}

@media (max-width: 280px) {
  .computer img {
    top: -200px;
  }
}
