:root{
  --title_color: #c1c2c5 ;
  --text_color: #909296 ;
  --main_color: #339af0;
  --main_hover_color: rgba(24, 100, 171, 0.2);
  --background_color: #1a1b1e;
  --background_complement_color: #1a1b1e86;
  --font-family: "Greycliff CF", -apple-system, BlinkMacSystemFont, "Segoe UI",
  Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji"
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--background_color);
  font-family: var(--font-family);
}

main {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100vw;
}

section {
  max-width: 1200px;
  padding: 1em;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

main .text {
  max-width: 390px;
}

main .text h1 {
  margin-bottom: 0.7em;
  font-size: 34px;
  color: var(--title_color);
}
main .text p {
  font-size: 18px;
  line-height: 27.9px;
  color: var(--text_color);
  margin-bottom: 3em;
}

main .image {
  max-width: 406px;
  margin-right: 2em;
}

button {
  padding: 1rem;
  font-size: 16px;
  font-weight: bold;
  color: var(--main_color);
  background-color: var(--background_complement_color);
  cursor: pointer;
  border: 1px solid var(--main_color);
  transition: .3s ease-in-out;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  -webkit-transition: .3s ease-in-out;
  -moz-transition: .3s ease-in-out;
  -ms-transition: .3s ease-in-out;
  -o-transition: .3s ease-in-out;
}

button:hover {
  background-color: var(--main_hover_color);
}

/* Table View */
@media only screen and (max-width: 810px) {
  section {
    flex-direction: column;
    align-items: center;
    width: 590px;
  }

  .text {
    min-width: 100%;
    margin-top: 1em;
    text-align: center;
  }

  .image {
    margin-right: 0em;
  }
  
  .text p {
    margin-bottom: 2em;
  }
}
/* Mobile View */
@media only screen and (max-width: 390px) {
  .text p {
    margin-bottom: 1em;
  }
}