/* COLORS */

/* Add your custom colors here */

/* Add your custom styles here */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.lato-light {
  font-family: "Lato", Arial, Helvetica, sans-serif;
  font-weight: 300;
  font-style: normal;
}

.lato-regular {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.lato-bold {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.lato-regular-italic {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: italic;
}

body {
  font-family: Lato, sans-serif;
  /* background-color: #ff9ada; */

  /* PEACHY PINK */
  background-color: #ff97b6;
  /* background-color: #ffa0a7; */
  margin: 0;
  padding: 0;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

h1 {
  color: #333;
  text-align: center;
  margin-top: 50px;
}

p {
  color: #666;
  text-align: center;
  margin-top: 20px;
}

.cta-button {
  display: block;
  width: 200px;
  margin: 30px auto;
  padding: 10px 20px;
  text-align: center;
  background-color: #007bff;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
}

.cta-button:hover {
  background-color: #0056b3;
}

/* NAVIGATION */
nav {
  padding: 20px;
  margin-top: 20px;
  border-radius: 5px;
}
ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: space-evenly;
}

li {
  margin: 10px;
}

a {
  text-decoration: none;
  color: #333;
  padding: 10px 20px;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

a:hover {
  background-color: rgba(255, 255, 255, 0.4);
}

/* HERO */

.hero {
  background-color: #fff;
  padding: 20px;
  margin-top: 20px;
  border-radius: 5px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 100vh;
  background-image: url("img/rainbow1.jpg");
  background-repeat: no-repeat;
  background-attachment: sticky;
  background-size: contain;
}

.hero-img {
  max-width: 300px;
  padding: 20px;
  border-radius: 20px;
}

.hero-text {
  max-width: 300px;
  padding: 20px;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  height: 100vh; /* Added */
}

.about {
  /* background-color: #fff; */
  padding: 20px;
  margin-top: 20px;
  border-radius: 5px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 100vh; /* Added */
}

.about-text {
  max-width: 300px;
  padding: 20px;
}

/* SERVICES */

.services {
  /* background-color: #fff; */

  padding: 20px;
  margin-top: 50px;
  border-radius: 5px;
  height: 100vh; /* Added */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
