body {
  margin: 0;
  font-family: Arial, sans-serif;
  overflow: hidden;
}

#page {
    position: flex;
    height: 100vh;
    background-color: #FFE2C4;
    
    display: flex;
    justify-content: center;
    flex-direction: row;
}

.bubble1 {
    position: absolute;
    height: 200px;
    width: 330px;
    top: 0px;
    left: 280px;
    z-index: 1;
}

.bubble2 {
    position: absolute;
    height: 300px;
    width: 400px;
    bottom: 0px;
    left: 450px;
    z-index: 1;
}

.house {
    position: absolute;
    width: 330px;
    bottom: 180px;
    left: 100px;
    z-index: 1;
}

.dog1 {
    position: absolute;
    width: 120px;
    bottom: 370px;
    left: 70px;
    z-index: 1;
}

.dog2 {
    position: absolute;
    width: 120px;
    bottom: 150px;
    left: 390px;
    z-index: 1;
    transform: rotate(50deg);
}

.cat1 {
    position: absolute;
    width: 100px;
    bottom: 120px;
    left: 50px;
    z-index: 1;
    transform: rotate(50deg);
}

.cat2 {
    position: absolute;
    width: 100px;
    bottom: 340px;
    left: 380px;
    z-index: 1;
}

.logo {
    position: absolute;
    width: 70px;
    bottom: 10px;
    left: 10px;
    z-index: 1;
}

.land img {
    width: 70px;
}

.land {
    position: absolute;
    top: 30px;
    left: 30px;
    z-index: 1;
}

.wave {
    position: absolute;
    height: 650px;
    width: 900px;
    left: 500px;
    z-index: 1;
}

.title {
    position: absolute;
    color: #FFE2C4;
    font-weight: bold;
    font-size: 50px;
    margin-top: 80px;
    margin-right: -850px;
    z-index: 3;
}

.stuff {
  position: absolute;
  display: flex;
  gap: 20px;

  margin-top: 10px;
  margin-right: -1110px;
  z-index: 2;
}

.stuff a {
    position: absolute;
    color: white;
  text-decoration: none;
  font-size: 24px;
  top: 30px;
  right: 130px;
}

.stuff p {
  color: white;
  text-decoration: none;
  font-size: 24px;

  padding: 8px 14px;
  border-radius: 6px;
  transition: 0.3s;
}

.stuff .login {
  display: flex;
  gap: 5px;
}

.stuff p.login {
  text-decoration: none;
  background: white;
  color: orange;
  align-self: flex-start;
}

.nickname {
    position: absolute;
    height: 40px;
    width: 350px;
    padding: 10px;
    font-size: 18px;
    color: gray;
    margin: 10px;

    background-color: beige;
    border-radius: 10px;
    border: none;
    outline: none;
    left: 900px;
    bottom: 360px;
    z-index: 3;
}

.password {
    position: absolute;
    height: 40px;
    width: 350px;
    padding: 10px;
    font-size: 18px;
    color: gray;
    margin: 10px;

    background-color: beige;
    border-radius: 10px;
    border: none;
    outline: none;
    left: 900px;
    bottom: 290px;
    z-index: 3;
}

.confirm {
    position: absolute;
    height: 40px;
    width: 350px;
    padding: 10px;
    font-size: 18px;
    color: gray;
    margin: 10px;

    background-color: beige;
    border-radius: 10px;
    border: none;
    outline: none;
    left: 900px;
    bottom: 220px;
    z-index: 3;
}

.email {
    position: absolute;
    height: 40px;
    width: 350px;
    padding: 10px;
    font-size: 18px;
    color: gray;
    margin: 10px;

    background-color: beige;
    border-radius: 10px;
    border: none;
    outline: none;
    left: 900px;
    bottom: 150px;
    z-index: 3;
}

.page .home {
  position: absolute;
  font-size: 24px;
  padding: 6px 149px;
  border-radius: 25px;
  transition: 0.3s;
  left: 910px;
  bottom: 110px;
}

.page a.home {
  text-decoration: none;
  background: white;
  color: orange;
  align-self: flex-start;
  z-index: 3;
}