 @import url("https://fonts.googleapis.com/css2?family=Black+Han+Sans&family=Inter:wght@500&family=Roboto+Condensed:wght@300&display=swap");
* {
  margin: 0;
  padding: 0;
}

body {
  background-color: rgb(2, 130, 231);
  height: 100vh;
  width: 100%;
}
#font {
  font-family: "Do Hyeon", sans-serif;
  color: white;
  font-size: 45px;
}

#lp1 {
  /* background-color: aqua; */
  /* border-right: solid 3px white; */
  position: relative;
  top: 20%;
  right: -50%;
  border: none;
}

.price {
  transition-property: all;
  transition-delay: 1s;
}

.name {
  /* background-color: red; */
  font-size: 70px;
  font-family: "Do Hyeon", sans-serif;
  color: white;
  text-align: center;

  width: 500px;
  height: 100px;

  position: relative;
  right: -35%;
  top: 15%;
}

.square {
  width: 400px;
  height: 400px;
  /* sbackground-color: black; */
  border-right: solid 3px white;
  position: absolute;
  top: 30%;
  right: 50%;

  display: flex;
  justify-content: center;
  align-items: center;
}
.css {
  transition: transform 1.5s;
}
.css:hover {
  /* translate: transform(-50%, -50%); */
  transform: scale(1.5);
  transition: transform 1.5s;
}
a {
  text-decoration-line: none;
}
h1 {
  animation: up-down 1.4s;
}

