* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  color: white;
}
html,
body {
  height: 100vh;
  width: 100vw;
  background-color: rgb(133, 185, 236);
}
body {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.text {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 3px;
}
img {
  height: 400px;
}
.buttons {
  display: flex;
  gap: 100px;
}
button {
  width: 200px;
  height: 50px;
  background-color: dodgerblue;
  border: 0;
  border-bottom: 2px solid rgb(13, 61, 109);
  border-radius: 15px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.3s;
}
button:hover {
  background-color: white;
  color: dodgerblue;
}
