body {
  position: relative;
  min-height: 100vh;
  font-family: Montserrat, Arial;
  
  padding-top: 150px;
  padding-left: 5%;
  padding-right: 5%;
  padding-bottom: 100px;

  margin: 0;
}

h2 {
  text-align: center;
  margin-bottom: 40px;
}

button {
  font-family: Montserrat, Arial;
}

a, a:visited, a:hover, a:active {
  text-decoration: none;
}

div p,
div ul,
section p,
section ul,
aside {
  line-height: 1.6;
}

input {
  font-family: Montserrat;
}

li {
  margin: 10px 0;
}

ul {
  margin-bottom: 0;
}

.bold-red {
  color: rgb(231, 0, 11);
  font-weight: bold;
}

.bold-green {
  color: rgb(0, 130, 54);
  font-weight: bold;
}

.bold-blue {
  color: rgb(19, 95, 250);
  font-weight: bold;
}

.call-to-action-button {
  display: inline-block;
  background-color: rgb(24, 90, 172);
  border: none;
  font-size: 18px;
  font-weight: 600;
  border-radius: 20px;
  cursor: pointer;
  color: white;

  padding: 10px 20px 10px 20px;
  margin-top: 10px;
  margin-bottom: 20px;

  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.call-to-action-button:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 10px rgba(0, 0, 0, 0.3);
  background-color: rgb(116, 199, 226);
  color: black;
}

footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #333;
  color: white;
  text-align: center;
  padding: 20px 0;        
}

footer p {
  font-size: 14px;
}

@media (max-width: 833px) {
  h1 {
    font-size: 30px;
  }
  
  h2 {
    font-size: 32px;
  }
}