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

/* mobile-first */
html, body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  text-align: center;
}

body {
  font-family: Roboto;
  font-weight: 400;
  color: gray;
}

header {
  height: fit-content;
  background-color: #5C8ECB;
  color: white;
  padding: 30px;
}
/* #background-img {
  background-image: url(/Images/header.svg);
  background-size: cover;
  background-position: center;
} */

svg {
  width: 10%;
}

img {
  width: 100%;
}

h1 {
  font-family: Ubuntu;
  font-weight: 700;
  font-size: 3rem;
  margin-top: 0%;
  margin-bottom: 0%;
}

h2 {
  font-family: Ubuntu;
  font-weight: 700;
  font-size: 2.5rem;
}

h3 {
  font-family: Ubuntu;
  font-weight: 700;
  /* margin-top: 0%; */
}

nav ul {
  padding-left: 0%;
}
nav li{
  display: inline-block;
}

li {
  list-style: none;
  margin: 0px 15px 0px 15px;
}

header a {
  text-decoration: none;
  color: white;
}

header a:hover {
  color: rgb(42, 54, 84);
}

main {
  padding: 30px;
}

#form {
  display: none;
}
#next {
  display: none;
}

button {
  border: none;
  border-radius: 1.5rem;
  background-color: #c5c962;
  width: 20rem;
  height: 100px;
  margin: 0.5rem;
  /* margin: 0px 30px; */
  font-size: 1.5rem;
  font-family: Ubuntu;
  font-weight: 700;
  color: white;
}

button:hover {
  background-color: #5C8ECB;
  color: white;
}

footer {
  margin-top: 50px;
}

@media screen and (min-width: 736px) and (max-width: 1000px) {
  button {
    width: 15rem;
  }
}