@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@400;600;700&family=Inter:wght@400;600;700&display=swap');

body {
  margin: 0;
  font-family: 'Inter', Arial, sans-serif;
  background: #ffffff;
  color: #5d5d5d;
}

section {
  padding: 60px 0;
}

.container {
  width: 1200px;
  margin: 0 auto;
}

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

h1,
h2 {
  font-family: 'Fredoka', Arial, sans-serif;
  color: #55b3ff;
}

h1 {
  font-size: 48px;
  margin-bottom: 35px;
}

h2 {
  font-size: 34px;
  margin-top: 60px;
}

.menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 18px;
}

.menu a {
  display: block;
  padding: 14px 28px;
  background: #fffca6;
  color: #5d5d5d;
  text-decoration: none;
  font-weight: 700;
  border-radius: 30px;
}

.menu a:hover {
  background: #c3ff92;
  color: #000000;
}

.bullet-list {
  list-style: none;
  padding-left: 0;
}

.bullet-list li {
  font-size: 20px;
  margin-bottom: 14px;
  padding-left: 35px;
  position: relative;
}

.bullet-list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: #55b3ff;
  font-size: 22px;
}

.outline-list {
  list-style-type: upper-roman;
  font-size: 20px;
  line-height: 34px;
}

.outline-list ol {
  list-style-type: lower-alpha;
  margin-top: 8px;
}

.links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.links a {
  font-weight: 700;
  text-decoration: none;
}

.text-link {
  color: #55b3ff;
  border-bottom: 2px solid #55b3ff;
}

.text-link:hover {
  color: #5d5d5d;
  border-bottom-color: #5d5d5d;
}

.filled-button {
  background: #55b3ff;
  color: #ffffff;
  padding: 14px 30px;
  border-radius: 30px;
}

.filled-button:hover {
  background: #c3ff92;
  color: #5d5d5d;
}

.border-button {
  color: #55b3ff;
  padding: 13px 30px;
  border: 2px solid #55b3ff;
  border-radius: 30px;
}

.border-button:hover {
  background: #55b3ff;
  color: #ffffff;
}

.underline-link {
  color: #5d5d5d;
  padding-bottom: 6px;
  border-bottom: 4px dotted #c3ff92;
}

.underline-link:hover {
  color: #55b3ff;
  border-bottom-style: solid;
}

.shadow-button {
  background: #fffca6;
  color: #5d5d5d;
  padding: 14px 30px;
  border-radius: 10px;
  box-shadow: 6px 6px 0 #55b3ff;
}

.shadow-button:hover {
  box-shadow: 2px 2px 0 #55b3ff;
  transform: translate(4px, 4px);
}