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

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Lato", sans-serif;
}

header {
  border-bottom: 1px solid black;
  width: 100%;
  height: 60px;
  line-height: 60px;
  text-align: center;
  background-color: rgba(95, 95, 95, 0.247);
  font-weight: bold;
}

body {
  height: 100vh;
  min-height: 100vh;
}

.content {
  width: 100%;
  min-height: calc(100vh - 120px);
  display: grid;
  place-items: center;
}

.content div {
  display: grid;
  text-align: center;
  padding: 0.5rem 0;
}

.firstPart {
  width: 100%;
  height: 100%;
  background-color: #e9eef1b2;
}

.secondPart {
  width: 100%;
  height: 100%;
  background-color: #c8dbe6b2;
}

.thirdPart {
  width: 100%;
  height: 100%;
  background-color: #6187c8b2;
}

.content div p {
  padding: 0.1rem 0;
}

footer {
  border-top: 1px solid black;
  width: 100%;
  height: 60px;
  line-height: 60px;
  text-align: center;
  background-color: rgba(95, 95, 95, 0.247);
  font-weight: bold;
}
