/** global element styling **/

/* Link to color scheme used for project - https://www.sessions.edu/color-calculator-results/?colors=9df5e9,f5dc9d,f59dcf */

@import 'https://fonts.googleapis.com/css?family=Lato:400,700';

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

nav {
    font-weight: 400;
}

nav>ul {
    width: 55vw;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    font-size: 2.4rem;
}

header {
    position: sticky;
    top: 0;
    z-index: 999;
    min-height: 75px;
    padding: 30px 30px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #9df5e9;
}

body {
    background-color: #9df5e9;
    font-family: 'Lato', sans-serif;
}

li {
    list-style: none;
    padding: 0 1rem;
}

a {
    color: #e7ac18;
    text-decoration: none;
    font-weight: 500;
}

footer {
    margin-top: 30px;
    background-color: rgb(255, 255, 255);
    padding: 20px;
    border-radius: 20px 20px 0 0;
}

footer>ul {
    display: flex;
    justify-content: center;
    font-size: 1.8rem;
}

footer>ul>li {
    padding: 0 30px;
}

footer>span {
    margin-top: 5px;
    display: flex;
    justify-content: flex-end;
    font-size: 0.85em;
    color: rgb(60, 60, 60);
    padding-right: 20px;
}


/** global classes styling **/

/* this adds a thin black border around the nav headings if wanted

.nav-link {
    text-shadow: 1px 0 0 #000, 0 -1px 0 #000, 0 1px 0 #000, -1px 0 0 #000;
}*/

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

.logo {
    width: 40vw;
}

.logo>img {
    width: 100%;
    height: 100%;
    max-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-left: 20px;
}

.btn {
    padding: 0 20px;
    height: 40px;
    font-size: 1em;
    font-weight: 900;
    text-transform: uppercase;
    border: 3px black solid;
    border-radius: 2px;
    background: transparent;
    cursor: pointer;
    border-radius: 8px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.features-section {
    display: flex;
}


/** email and slinky image area **/

email-input input[type='email'] {
    max-width: 275px;
    width: 100%;
    padding: 5px;
}

.container-email {
    margin-top: 30px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
}

.email-input-slinky-image {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.product {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: calc(100% / 3);
    margin: 10px;
    border: 5px solid #f59dcf;
    padding: 15px;
    border-radius: 20px;
    background-color: azure;
}

.product>.level {
    background-color: #f59dcf;
    color: black;
    padding: 15px 0;
    width: 100%;
    text-transform: uppercase;
    font-weight: 900;
    font-size: 1.2em;
    border-radius: 8px;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.product>h2 {
    margin-top: 15px;
    /* (optional) text-shadow: 1px 1px #f59dcf;*/
}

.product>ol {
    margin: 15px 0;
}

.product>ol>li {
    padding: 5px 0;
}

.product>button {
    border: 0;
    margin: 15px 0;
    background-color: #f59dcf;
    font-weight: 600;
}

.product>button:hover {
    background-color: rgb(255, 255, 255);
    transition: background-color 0.4s;
}


/** global ID styling **/

#email-boxes {
    position: relative;
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
}

#page-wrapper {
    position: relative;
}

#email-input {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 0 40px;
}

#email-input>h2 {
    margin-bottom: 20px;
    word-wrap: break-word;
    color: #f59dcf;
}

#email-input input[type='submit'] {
    max-width: 150px;
    width: 100%;
    height: 30px;
    margin: 15px 0;
    border: 0;
    background-color: #f59dcf;
}

#email-input input[type='submit']:hover {
    background-color: rgb(255, 255, 255);
    transition: background-color 1s;
}

#features {
    margin-top: 30px;
}

#features .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 125px;
    width: 20vw;
    color: rgb(255, 255, 255);
}

#features .about {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 125px;
    width: 80vw;
    padding: 5px;
}

#how-it-works {
    margin-top: 50px;
    display: flex;
    justify-content: center;
}

#how-it-works>iframe {
    max-width: 560px;
    width: 100%;
    border-radius: 8px;
}

#pricing {
    margin-top: 60px;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

#titanium {
    background-color: rgb(207, 207, 207);
}

#gold {
    background-color: gold;
}


/** global @media styling **/

@media (max-width: 600px) {
    header {
        flex-wrap: wrap;
    }
}

@media (max-width: 650px) {
    .logo {
        margin-top: 15px;
        width: 100%;
        position: relative;
    }
}

@media (max-width: 650px) {
    .logo>img {
        margin: 0 auto;
    }
}

@media (max-width: 650px) {
    nav {
        margin-top: 10px;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 0 50px;
    }

    nav li {
        padding-bottom: 5px;
    }
}

@media (max-width: 650px) {
    nav>ul {
        flex-direction: column;
    }
}

@media (max-width: 650px) {
    #email-input {
        margin-top: 120px;
    }
}

@media (max-width: 550px) {
    #features .icon {
        display: none;
    }
}

@media (max-width: 550px) {
    #features .about {
        width: 100%;
        text-align: center;
        padding: 0;
        height: 150px;
    }
}

@media (max-width: 650px) {
    #features {
        margin-top: 0;
    }
}

@media (max-width: 800px) {
    #pricing {
        flex-direction: column;
    }

    .product {
        max-width: 300px;
        width: 100%;
        margin: 0 auto;
        margin-bottom: 10px;
    }
}