html {
  scroll-behavior: smooth;
}

body {
  color: #010202;
  font-family: "Inter", sans-serif;
  margin: 0px;
}

h1 {
  font-size: 68px;
  font-weight: 800;
  margin: 0px;
}

h2 {
  font-size: 36px;
  font-weight: 800;
  margin: 0px;
}

p, a{
  font-size: 24px;
  line-height: 1.4;
}

@media only screen and (max-width: 800px) {
  p, a {
    font-size: 20px;
    line-height: 1.4;
  }
}

a {
  color: inherit; /* blue colors for links too */
  text-decoration: inherit; /* no underline */
}

section {
  width: 100%;
  margin-bottom: 40px;
  padding: 24px;
  box-sizing: border-box;
}

section.small-mb {
  margin-bottom: 0px;
}

.container {
  width: 100%;
  max-width: 900px;
  margin: auto;
}

.bg--pink {
  background: #fff1f1;
}

.box-shadow {
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.landing {
  display: flex;
  flex-direction: row;
  align-items: center;
  min-height: 600px;
}

.landing--icon img {
  width: 40px;
  margin-bottom: 12px;
}

.landing--left {
  width: calc(100% - 300px);
  padding-right: 60px;
}

.landing--right {
  width: 300px;
}

@media only screen and (max-width: 800px) {
  .landing {
    flex-wrap: wrap;
  }

  .landing--left {
    width: 100%;
    padding-right: 60px;
  }
}

.landing--img {
  border-radius: 50%;
  border: 2px solid #b9251e;
  padding: 10px;
  background: white;
}

.landing--img__mobile {
  width: 100%;
  max-width: 300px;
  margin: 30px 0px;
  display: none;
}

.landing--img__desktop {
  width: 100%;
  display: block;
}

@media only screen and (max-width: 800px) {
  .landing--img__mobile {
    display: block;
  }
  
  .landing--img__desktop {
    display: none;
  }
}

.landing--buttons {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
}

.landing--button {
  padding: 5px 15px;
  border-radius: 5px;
  border: 1px solid #b9251e;
  margin: 0px 20px 20px 0px;
  cursor: pointer;
  transition: transform 0.5s;
  white-space: nowrap;
}

.landing--button:hover {
  transform: translateY(-2px);
}

.landing--standard-button {
  background: #b9251e;
  color: white;
}

.landing--inverted-button {
  background: white;
  color: #b9251e;
}

.contact {
  padding: 36px 24px;
  border: 2px solid #b9251e;
  border-radius: 5px;
  width: calc(100% - 48px);
  background: #FDF7F7;
  margin-bottom: 100px;
}

.contact--info {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.contact--info img{
  width: 25px;
  margin-right: 10px;
}

.contact--info p {
  margin: 0px;
}
