@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;400;600&display=swap");

* {
  box-sizing: border-box;
}

body {
  align-items: center;
  background-color: #004b8d;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  margin: 0;
  height: 100%;
}

.parent {
  align-items: center;
  background-color: #004b8d;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

.btnContainer {
  position: relative;
  top: 30vh;
  width: 85%;
  z-index: 2;
}

.btn {
  align-content: center;
  background-color: #003e74;
  border-radius: 10px;
  border: solid 3px #fff;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.41);
  color: #fff;
  cursor: pointer;
  font-family: "Poppins", "sans-serif";
  font-size: 1.5rem;
  padding: 1rem;
  text-align: center;
  width: 100%;
}

.logoContainer {
  bottom: -10px;
  margin: 0;
  padding: 0;
  position: absolute;
  width: 100%;
  z-index: 1;
}

.logo {
  width: 100%;
}

@media only screen and (min-width: 732px) {
  .btn {
    font-size: 2.2rem;
    padding: 2rem;
  }

  .btnContainer {
    width: 70%;
  }

  .parent,
  .logoContainer {
    max-width: 1024px;
  }
}
