@import url("https://fonts.googleapis.com/css2?family=Lexend+Deca&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Big+Shoulders+Display:wght@100&family=Lexend+Deca&display=swap");

.attribution {
  font-size: 14px;
  text-align: center;
  padding: 15px;
  font-family: "Lexend Deca", sans-serif;
}
.attribution a {
  text-decoration: underline;
  color: rgb(47, 47, 152);
}

html {
  box-sizing: border-box;
  width: 100%;
  height: 100%;
}

body {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-content: center;
  font-size: 15px;
  background-color: hsl(0, 0%, 95%);
}
/* Container */

#container-box {
  border: 2px solid greenyellow;
  display: flex;
  flex-direction: row;
  /* padding: 40px 4px; */
  margin: 0 275px;
  text-align: left;
  justify-content: center;
  align-items: center;
}

/* BOXES/ COLUMN */
.box {
  /* margin: auto; */
  padding: 60px 29px;
}

#box-1 {
  background: hsl(31, 77%, 52%);
  border-top-left-radius: 11px;
  border-bottom-left-radius: 11px;
}
#box-1 button {
  color: hsl(31, 77%, 52%);
}

#box-1 button:hover {
  color: white;
}

#box-2 {
  background: hsl(184, 100%, 22%);
}
#box-2 button {
  color: hsl(184, 100%, 22%);
}

#box-2 button:hover {
  color: white;
}

#box-3 {
  background: hsl(179, 100%, 13%);
  border-top-right-radius: 11px;
  border-bottom-right-radius: 11px;
}

#box-3 button {
  color: hsl(179, 100%, 13%);
}

#box-3 button:hover {
  color: white;
}

/* HEADING */

.h-primary {
  font-family: "Big Shoulders Display", cursive;
  font-weight: bolder;
  font-size: 40px;
  color: hsl(0, 0%, 95%);
}

/* PARAGRAPH */

.p-detail {
  font-family: "Lexend Deca", sans-serif;
  font-weight: 400;
  color: hsla(0, 0%, 100%, 0.75);
}

/* BUTTON */

.btn {
  background: hsl(0, 0%, 95%);
  padding: 9px;
  width: 8rem;
  border-radius: 33px;
  border: none;
  font-weight: 700;
  border: 2px solid hsl(0, 0%, 95%);
}

.btn:hover {
  cursor: pointer;
  background-color: transparent;
  color: hsl(0, 0%, 95%);
  border: 2px solid hsl(0, 0%, 95%);
}
