html {
  padding: 0;
  margin: 0;
  background-image: url("image/background.svg");
  background-size: cover;
  background-repeat: repeat;
  height: 100vh;
  width: 100vw;
}
#latar {
  width: 300px;
  height: 300px;
  border: solid;
  border-color: white;
  border-radius: 10px;
  box-shadow: 10px 10px;
  margin: 10% 5%;
}
.center {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
}
#latar1 {
  background-color: #1d4ed8;
  width: 300px;
  height: 300px;
  border: solid;
  border-color: white;
  border-radius: 10px;
  box-shadow: 10px 10px;
  margin: 10% 5%;
}
h2 {
  margin-bottom: 0;
  font-family: "Bungee", cursive;
}
h3 {
  margin-top: 0;
  color: white;
  font-family: "Ubuntu", sans-serif;
}
img {
  height: 65%;
  display: block;
  margin: auto;
}
#latarText {
  background: white;
  height: 55px;
  width: 85%;
  text-align: center;
  margin: 0 auto;
}
#latarText2 {
  background: black;
  width: 100%;
  margin: auto;
}
.tombol {
  font-family: "Ubuntu", sans-serif;
  top: 50%;
  background-color: black;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 15px;
  width: 100%;
  min-height: 30px;
  min-width: 120px;
  margin: 15px 0;
}
.tombol:hover {
  background-color: white;
  color: black;
}
#latarTombol {
  width: 85%;
  margin: 10% auto;
}
footer {
  font-size: 12px;
  color: white;
  font-family: Sans-Serif;
  padding-bottom: 20px;
  text-align: center;
}
@media screen and (max-width: 600px) {
  .center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0px;
  }
  #latar,
  #latar1 {
    width: 250px;
    height: 250px;
    margin: 10% 0;
  }
  #latarText2 {
    width: 95%;
  }
  .tombol {
    margin: 8px 0;
  }
}
