html {
  font-size: 62.5%;
}

body {
  width: 100vw;
  height: 100vh;
  font-family: "Josefin Sans", sans-serif;
  font-size: 1.6rem;
  color: #141414;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.button {
  border: none;
  border-radius: 6px;
  background: #2F5DA8;
  box-shadow: 3px 4px 4px rgba(0, 0, 0, 0.25);
  padding: 10px;
  font-size: 1.4rem;
  font-weight: bold;
  color: #f4f4f4;
  cursor: pointer;
}

.button:hover {
  background: #4987EB;
  transition: all 0.5s ease;
  transform: scale(110%);
}

input {
  width: 269px;
  height: 34px;
  background: #f4f4f4;
  box-shadow: inset 0px 3px 4px rgba(0, 0, 0, 0.25);
  border-radius: 5px;
  outline: none;
  border: none;
  padding-left: 20px;
  font-size: 1.2rem;
}

.p {
  font-size: 1.6rem;
  margin: 0;
  text-align: center;
}

.header-container {
  display: grid;
  flex-direction: column;
  place-items: center;
}
.header-container__logo {
  width: 40px;
  height: 40px;
  margin: 10px 0 10px 0;
  background-image: url(https://raw.githubusercontent.com/Jefersonsteven/math-aplication-JS-FG/main/public/assets/Img/logo.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.calculate-container__squares {
  width: 320px;
  height: 468px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
}
.calculate-container__squares--img {
  position: relative;
  display: grid;
  place-items: center;
  width: 177px;
  height: 218px;
  margin-top: 20px;
  background-image: url(https://raw.githubusercontent.com/Jefersonsteven/math-aplication-JS-FG/17fd2ba4913b370cb5691ff4892b8f9fd4b12e09/public/assets/Img/square.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.calculate-container__squares--img p {
  background-color: #f4f4f4;
  border-radius: 2px;
  padding: 5px;
}
.calculate-container__squares--buttons {
  width: 291px;
  display: flex;
  justify-content: space-between;
}

.calculate-container__triangles {
  width: 320px;
  height: 628px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
}
.calculate-container__triangles--img {
  position: relative;
  display: grid;
  place-items: center;
  width: 177px;
  height: 218px;
  margin-top: 20px;
  background-image: url(https://raw.githubusercontent.com/Jefersonsteven/math-aplication-JS-FG/17fd2ba4913b370cb5691ff4892b8f9fd4b12e09/public/assets/Img/triangle.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.calculate-container__triangles--img p {
  background-color: #f4f4f4;
  border-radius: 2px;
  padding: 5px;
}
.calculate-container__triangles--buttons {
  width: 291px;
  display: flex;
  justify-content: space-between;
}

.calculate-container__circles {
  width: 320px;
  height: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
}
.calculate-container__circles--img {
  position: relative;
  display: grid;
  place-items: center;
  width: 177px;
  height: 218px;
  margin-top: 20px;
  background-image: url(https://raw.githubusercontent.com/Jefersonsteven/math-aplication-JS-FG/main/public/assets/Img/circle.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.calculate-container__circles--img p {
  background-color: #f4f4f4;
  border-radius: 2px;
  padding: 5px;
}
.calculate-container__circles--buttons {
  width: 291px;
  display: flex;
  justify-content: space-between;
}