body {
  font-family: "Kumbh Sans", Arial, sans-serif;
}

h1,
p {
  color: #333;
}

.mainContainer {
  width: 100%;
  height: 100%;

  background-image: url(/images/mountain.jpg);
  background-size: cover;
  background-position: 150px center;
  background-repeat: no-repeat;
}

.left {
  width: 36%;
  height: 100%;
  background-color: #fff;
  max-width: 800px;
  padding: 40px;
  position: relative;
  border-right: 1px solid #ccc;
  box-shadow: 6px 0px 21px -0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 6px 0px 21px -0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 6px 0px 21px -0px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
}

#logo {
  position: absolute;
  top: 54px;
  left: 40px;
  width: 144px;
}

.content h1 {
  margin-bottom: 15px;
  font-size: 36px;
}

.content p {
  font-size: 17px;
}

.content a {
  text-decoration: none;
  font-weight: bold;
  color: #333;
  transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
}

.content a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

@media (max-width: 768px) {
  /* Tablets & smaller screens */
  .left {
    width: 100%;
    border: none;
  }
}
