body {
  font-family: 'Roboto', sans-serif;
}

header {
  height: 500px;
  background-image: url(img/background.jpg);
  background-size: cover;
  background-position: center center;
  display: flex;
  justify-content: center;
  align-items: center;
}

header > h1 {
  font-size: 60px;
  color: white;
}

main {
  width: 1300px;
  margin: auto;
}

h2 {
  font-size: 30px;
}

#about {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}

#about > section {
  width: 300px;
  height: 420px;
  border-radius: 10%;
  text-align: center;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 25%);
  position: relative;
}

#about > section > img {
  width: 250px;
  border-radius: 8%;
  margin-top: 25px;
}

#about > section > p {
  text-align: left;
  font-size: 18px;
  font-weight: 500;
  position: absolute;
  top: 280px;
  margin: 25px;
}

#about-wrapper, #why-wrapper, #tips-wrapper, #contact-wrapper {
  padding-top: 25px;
}

#why, #tips {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 25px;
}

#why > section, #tips > section {
  width: 880px;
  height: 60px;
  border-radius: 25px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 25%);
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}

#why > section > p, #tips > section > p {
  padding-left: 25px;
}

#contact {
  margin-bottom: 50px;
}

#contact img {
  width: 50px;
  margin-right: 25px;
}

#about > section:hover, #why > section:hover, #tips > section:hover {
  background-color: #f6f6f6;
}

.bold {
  font-size: 18px;
  font-weight: 700;
}

footer {
  text-align: center;
}

#navbar {
  overflow: hidden;
  position: fixed;
  top: 0;
  width: 100%;
  background-color: white;
  display: flex;
}

#navbar-right {
  margin-left: auto;
  margin-right: 16px;
}

#navbar a {
  float: left;
  display: block;
  text-align: center;
  padding: 14px 16px;
  color: black;
  text-decoration: none;
}

#navbar a:hover {
  background-color: #f2f2f2;
}

html{
  scroll-behavior: smooth;;
}