@import url('https://fonts.googleapis.com/css2?family=Didact+Gothic&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Didact+Gothic&family=Josefin+Sans:wght@300;700&display=swap');

body {
    margin: 0;
    padding: 0;
    font-family: 'Didact Gothic', sans-serif;
}
.main-content {
    max-width: 100vw;
}

.main-logo {
    position: absolute;
    width: 100px;
    left: 5%;
    top:10%
}

.section{
    height: 100vh;
    width: calc(100vw-4em);
    padding-left: 2em;
    padding-right: 2em;
    position: relative;
    overflow: hidden;
}

.nav ul {
    position: relative;
    z-index: 100;
    list-style-type: none;
    margin: 0;
    padding: 3em;
    text-align: right;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 300;
    font-size: 0.8em;
}

.nav ul li {
    display: inline;
}

.nav ul li a {
  color: white;
  text-decoration: none;
  padding: 14px 16px;
}

.nav ul li a:hover {
    color: #626262;
}

.home {
    background-color: #87D6FA;
}

.about {
    background-color: #FFA539;
}

.pricing {
    background-color: #ffffff;
    text-align: center;
    /* padding-top: 4em; */
}


button {
    cursor: pointer;
    border: none;
    padding-top: 1em;
    padding-bottom: 1em;
    padding-left: 3.5em;
    padding-right: 3.5em;
    border-radius: 3em;
    background-color: #ffffff;
    box-shadow: 0px 10px 30px 1px #0000002a;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 300;
    font-size: 0.8em;
}

button:hover {
    transform: scale(1.02);
}

.content {
    z-index: 10;
    width: 45%;
    position: absolute;
    padding: 2em;
    padding-left:5em;
    top: 50%; 
    transform: translate(0%,-50%);
}

.content p {
    color: #3f3f3f;
    line-height: 2em;
}

h2 {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 5em;
    padding: 0px;
    margin: 0px;
}

.content h2 {
    color: #ffffff;
}

.pricing-content h2 {
    font-size: 2em;    
    padding-top: 2em;
}

.pricing-description {
    padding-right: 30%;
    padding-left: 30%;
}

.pricing-content h2, .pricing-content p {
    color: #626262;
    /* text-align: center; */
    /* width: 50%; */
}

.price-heading {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 300;
    font-size: 0.8em;
    margin-bottom: 2em;
    color: #000000;
}

.display-price {
    font-size: 10em;
    color: #ffffff;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 700;
    line-height: 0.9em;
    margin: 0px;
    padding: 0px;
    display: inline-block;
}

.display-currency {
    color: #ffffff;
    font-size: 20px;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 700;
    display: inline-block;
    vertical-align: top;
}

.inverted {
    background-color: #000000;
    color: #ffffff;
}

.hero-image {
    position: absolute;
    z-index: 1;
    bottom: 0;
    height: 95vh;
    right: 20%;
}

.hero-image-phone {
    position: absolute;
    z-index: 1;
    bottom: 0;
    height: 100vh;
    right: 0%;
}


.play-badge {
    position: absolute;
    z-index: 1;
    bottom: 8%;
    right: 8%;
    height: 70px;
}

.pricing-box {
    width: 20vw;
    margin: 1em;
    padding: 2.5em;
    border-radius: 1em;
    height: 50vh;
    display: inline-block;
    text-align: center;
    background-color: #87D6FA;
    box-shadow: 0px 10px 30px 1px #0000002a;
}

.pricing-box right { 
    background-color: #FFA539;
}