
html {
    --text-color: black;
    --background-color: white;
}

@media (prefers-color-scheme: dark) {
    html {
        --text-color: white;
        --background-color: black;
    }
}

html, body {
    font-family: 'Open Sans', sans-serif;;
    padding: 0;
    margin: 0;
    height: 100%;
    color: var(--text-color);
    background-color: var(--background-color);
}

@media (max-width: 576px) {
  .no-mobile {
    display: none;
  }
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

header {
    position: fixed;
    width:  100%;
    display: flex;
    justify-content: right;
    flex-direction: row;
    top: 0;
}

header a {
    padding: 20px 50px;
    text-decoration: none;
    display: block;
    border-radius: 2px;
    margin: 10px;
    color: var(--text-color);
}

header a:hover {
    background-color: var(--text-color);
    border-radius: 40px;
    color: var(--background-color);
    text-decoration: none;
}

.hero {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: 20px;
    margin-top: 120px;
}

.hero .title {
    margin-right: 40px;
}

.hero h1 {
    margin-top: 0;
    margin-bottom: 30px;
    font-size: 52px;
    font-weight: 700;
    text-transform: uppercase;
}

.hero h2 {
    margin-bottom: 60px;
    margin-top: 0;
    font-size: 22px;
    font-weight: normal;
}

.hero .screenshot {
    max-width: 800px;
    width: 100%;
    margin: 10px;
}

.hero .screenshot img {
    margin-top: 60px;
    margin-bottom: 60px;
    width: 100%;
    max-width: 800px;
    box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
}

@media (min-width: 576px) {
    .hero .screenshot img {
        transform: perspective(800px) rotateY(-12deg);
        transform-style: preserve-3d;
    }
}

.button {
    padding: 15px 20px;
    border-radius: 40px;
    border-width: 4px;
    border-style: solid;
    border-color: var(--text-color);
    color: var(--text-color);
    font-size: 22px;
    cursor: pointer;
}

.button:hover {
    background: linear-gradient(270deg, rgb(168, 85, 247) 0%, rgb(33,150,243) 100%);
    border-color: var(--background-color);
    color: var(--background-color);
    text-decoration: none;
}

.button-small {
    display: inline-block;
    border-width: 2px;
    font-size: 18px;
    width: 260px;
}

.features-header {
    text-align: center;
    margin: 100px 0;
}

.features-header h1 {
    font-size: 42px;
    font-weight: normal;
}

.features {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    margin: 50px 0;
    overflow: hidden;
}

.features .row {
    justify-content: center;
    max-width: 1280px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.features .row .column {
    display: flex;
    margin: 30px;
}

.features .row .column .content {
    max-width: 300px;
}

.features .row .column .content .title {
    font-weight: 700;
    font-size: 18px;
    padding-bottom: 10px;
}

.features .row .column .content .body {
    font-weight: normal;
    font-size: 18px;
    color: gray;
}

.get-now {
    text-align: center;
    margin: 160px 0;
    padding-top: 80px;
    margin-top: 80px;
    font-size: 18px;
}

.get-now a {
    color: var(--text-color);
}

.get-now h1 {
    font-size: 42px;
    font-weight: normal;
}

.get-now div {
    margin: auto;
    max-width: 830px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: baseline;
}

.get-now .or {
    margin: 0 60px;
}

@media (max-width: 720px) {
    .get-now .or {
        margin: 30px 100%;
    }
}

.hr {
  height: 2px;
  width: 80%;
  margin-bottom: 10px;
  background: linear-gradient(270deg, rgb(168, 85, 247) 0%, rgb(33,150,243) 100%);
}

footer {
    background-color: black;
    color: white;
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 15px;
    padding: 50px;
    line-height: 50px;
}

footer a {
    color: #cecece;
    text-decoration: none;
    padding: 0 10px;
}

footer a:hover {
    color: white;
    text-decoration: none;
}

footer span {
    text-wrap: nowrap;
    margin: 0 60px;
}