@import url("https://fonts.googleapis.com/css2?family=Jaro:opsz@6..72&family=Pacifico&family=Permanent+Marker&display=swap");

* {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
}

body {
  background-color: rgb(122, 147, 194);
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 50px;
  position: relative;
  width: 95%;
  z-index: 100;
  margin: 50px 0 0 50px;
}

header h1 {
  font-size: 60px;
  color: rgb(255, 255, 255);
}
header .title {
  text-decoration: none;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 50px;
  transition: 0.4s;
}
header nav {
  display: flex;
  gap: 30px;
}
header nav a {
  text-decoration: none;
  font-size: 20px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 99px;
  transition: 0.4s;
  color: rgb(255, 255, 255);
}
header .title {
  background: #5f7295;
}
header .title:hover {
  background: #a2c3ff;
}
header nav a:hover {
  background: #546586;
}
header nav a:hover > a:not(:hover) {
  background: none;
}

.big-title {
  display: flex;
  margin: 50px 0;
  text-align: center;
  width: 100%;
  justify-content: center;
  font-size: 100px;
  color: white;
  font-family: "Permanent Marker", cursive;
}

.day {
  border: 10px solid #ffffff;
  background: #a2c3ff;
  border-radius: 50px;
  margin: 15vh 30%;
  padding: 50px;
}

.day .day-title {
  display: flex;
  justify-content: center;
  width: 40%;
  margin: 30px 0 100px calc(25% + 30px);
}
.day .text-img {
  display: flex;
  margin: 20px 0;
}
.day .text-img img {
  border: solid 5px white;
  border-radius: 20px;
  width: 40%;
  margin: 20px 5%;
  justify-content: center;
  align-items: center;
}
.day .text-img .text {
  width: 50%;
  text-align: justify;
  line-height: 1.2;
}
.day .text-full {
  width: 100%;
  text-align: justify;
  line-height: 1.2;
  margin: 30px 0;
}

footer {
  position: absolute;
  padding-bottom: 60px;
  left: 50%;
  transform: translate(-50%, 0);
  font-size: 25px;
}
