@import url("https://fonts.googleapis.com/css2?family=Pacifico&display=swap");

html {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  border: 0;
}

body {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background: #fadadd;
  position: relative;
  padding: 0;
  margin: 0;
  border: 0;
}

.container {
  font-size: 24px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #333333;
  font-family: "Pacifico", cursive;
}

.container > img {
  width: 420px;
  max-width: 80%;
}

.container > .rizz {
  font-size: 36px;
  font-weight: 500;
}

.call-to-action {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.call-to-action > button {
  cursor: pointer;
  color: #333333;
  font-weight: bold;
  background-color: #ff69b4;
  border: none;
  outline: none;
  width: 50px;
  height: 35px;
  transition: background-color 150ms linear;
}

.call-to-action > button:hover {
  background-color: #ff1493;
}
