@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

/* // <uniquifier>: Use a unique and descriptive class name
// <weight>: Use a value from 300 to 800

.open-sans-<uniquifier> {
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
} */

/*
  1. Use a more-intuitive box-sizing model.
*/
*,
*::before,
*::after {
    box-sizing: border-box;
}

/*
    2. Remove default margin
  */
* {
    margin: 0;
}

/*
    Typographic tweaks!
    3. Add accessible line-height
    4. Improve text rendering
  */
body {
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    font-family: "Open Sans", sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    
}

html{
    scroll-behavior: smooth;
}

/*
    5. Improve media defaults
  */
img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}

/*
    6. Remove built-in form typography styles
  */
input,
button,
textarea,
select {
    font: inherit;
}

/*
    7. Avoid text overflows
  */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
    overflow-wrap: break-word;
}

/*
    8. Create a root stacking context
  */
#root,
#__next {
    isolation: isolate;
}

body {
    --text-color: rgb(233, 233, 233);
    --dark-gray: rgb(22, 22, 22);
    --bright-green: rgb(151, 255, 151);
    width: 100%;
    width: 100vw;
    min-height: 100vh;
    overflow-x: hidden;
    background: linear-gradient(to bottom, #567, #30343a);
    color: var(--text-color);
}

a {
    text-decoration: unset;
    color: unset;
}

.header {
    display: flex;
    width: 100%;
    justify-content: space-between;
    padding: 10px;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.67);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo-holder {
    display: flex;
    justify-content: flex-start;
    width: 70%;
    align-items: center;
}

#logo-link{
    display: flex;
    align-items: center;
}

.logo {
    width: 45px;
    margin: 5px;
    margin-right: 10px;
}

.header-contact{
    margin-right: 5px;
    
    border-radius: 17px;
    padding: 11px;
    color: var(--bright-green);
    font-size: 0.75rem;
}

.login-button {
    height: 75px;
    width: 100px;
    border-radius: 10px;
    color: rgb(222, 222, 222);
    font-weight: bold;
    margin: 5px;
    font-size: 1.2em;
    background: linear-gradient(to bottom, #567, #30343a);
}

.main-content {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    margin-block: 85px;
}

.tag-line{
    font-size: 2em;
    font-weight: 700;
    line-height: 1.1em;
}

.tag-line-highlight{
    color: var(--bright-green);
    font-weight: 800;
    text-decoration: underline;
}

.container {
    max-width: 90%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.screenshot-holder {
    width: 90%;
    display: flex;
    margin-block: 15px;
    justify-content: center;
}

.sales-copy{
    margin-block: 20px;
    margin-inline: 5px;
}

.copy-container{
    text-align: center;
    margin-top: 40px;
    text-align: left;
}

.cta{
    background: var(--dark-gray);
    width: 100vw;
    display: flex;
    justify-content: center;
    padding: 25px;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;

}

.cta-container{
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding:25px;
    flex-direction: column;
}

.cta-item{
    display: flex;
    flex-direction: column;
    padding-block: 20px;
    justify-content: flex-end;

}

.cta-item a{
    padding-block:25px;
    color: var(--bright-green);
    font-weight: bold;
}

.cta-title{
    color: var(--bright-green);
}

.hide {
    display: none;
}

.header-contact{

}

#carousel{
    border-radius: 10px;
    height: 280px;
    box-shadow: 0 0 9px 0px #292929;
    transition: opacity 0.5s ease-in-out;
}

.fade-out{
    opacity: 0;
}

@media (min-width: 800px) {
    .container {
        flex-direction: row;
    }

    .screenshot-holder{
        
    }

    #carousel{
        height: 300px;
        box-shadow: 0 0 20px 3px #292929;
    }

    .tag-line{
        font-size: 3em;
    }

    .logo-holder{
        justify-content: flex-start;
        margin-left: 20px;
    }

    .login-button{
        margin-right: 80px;
       width: 250px;
    }

    .copy-container{
        max-width: 50%;
        margin: 15px
    }

    .sales-copy{

        margin-block: 40px;
        font-size: 1.5em;
    }

    .cta-title{
        font-size: 2em;
    }

    .cta-container{
        justify-content: space-around;
        flex-direction: row;
        font-size: 1.5em;
    }

    .cta-item{
        max-width: 450px;
    }

    .logo{
        width: 80px;
        margin-right: 20px;
    }

    #logo-link{
        font-size: 1.5em;
    }

    .header-contact{
        margin-right: 48px;
        font-size: 2em;
    }
}

@media (min-width: 1200px) {
    #carousel{
        height: 600px;
        box-shadow: 0 0 20px 3px #292929;
    }
}