main {
  display: flex;
  flex-direction: column;
}

.image {
  width: 100vw;
  aspect-ratio: 1934/1174;
  background: no-repeat;
  background-image: url('../imgs/marble.jpg');
  background-size: 100%;
  display: flex;
  background-position: center;
}

.spacer {
  width: 60%;
}

.description {
  width: 50%;
  display: flex;
  align-items: center;
  padding: 0px 50px 75px 0px;
}

.description p {
  padding: 25px;
  font-size: 35px;
  color: rgb(61, 60, 60);
}

main h1 {
  font-size: 35px;
  padding: 50px;
  text-align: center;
}

.certs-and-courses {
  display: flex;
  flex-direction: center;
}

.description {
  display: flex;
  flex-direction: column;
  align-self: center;
}

button {
  display: inline-block;
  border-radius: 4px;
  background-color: #333;
  border: none;
  color: #FFFFFF;
  text-align: center;
  font-size: 16px;
  padding: 20px 30px;
  transition: all 0.5s;
  cursor: pointer;
  margin: 5px;
  outline: none;
  font-family: 'Lora', serif;
}

.learn-more-button span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

.learn-more-button span:after {
  content: '\00bb';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}

.learn-more-button:hover span {
  padding-right: 25px;
}

.learn-more-button:hover span:after {
  opacity: 1;
  right: 0;
}
