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

html {
  font-size: 62.5%;
}

body {
  font-family: "Outfit", sans-serif;
  background-color: hsl(212, 45%, 89%);
  padding: 4rem;
}

.flex-box {
  background-color: rgba(196, 203, 214, 0.9);
  max-width: 140rem;
  height: 80rem;
  margin: 8rem auto;
  border-radius: 1em;
  box-shadow: 1px 1px 5px rgb(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
}

.url-box {
  width: 100%;
  max-width: 40rem;
  height: 55rem;
  background-color: white;
  border-radius: 3rem;
  padding: 2rem;
  flex-direction: column;
  display: flex;
  gap: 1rem;
}

.img-box {
  height: 63%;
  width: auto;
  border-radius: 1rem;
  object-fit: cover;
}

img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 2rem;
}

.box-text {
  height: 40%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

h1 {
  font-size: 2.8rem;
  font-weight: 700;
  text-align: center;
  padding-bottom: 7px;
  padding-bottom: 1rem;
}

.box-text p {
  font-size: 2rem;
  text-align: center;
  font-weight: 400;
  padding-bottom: 4rem;
}
