::-webkit-scrollbar {
    display: none;
}

html {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

body {
    background-color: #FEFDFD;
    margin: 0px;
}

a {
    color: inherit;
}

button {
    border: none;
    padding: none;
    margin: none;
}

#header {
    background-color: #FEFDFD;
    color: #211B1F;
    height: 50px;
    width: 100vw;
    font-family: "Nunito Sans", sans-serif;
    font-optical-sizing: auto;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: inline-block;
}

#foreground {
    background-color: #FEFDFD;
    width: 100%;
    height: calc(100vh - 50px);
    padding: 20px;
    padding-top: 0px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: left;
    position: relative;
}

#mainimg {
    background-color: #F3F3F3;
    height: calc(100%);
    width: calc(100vw * 0.6);
    border-radius: 7px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative; 
}

.carousel-image {
    opacity: 0;
    position: absolute;
    transition: opacity 0.5s ease-in-out; 
}

#img1 {
    width: auto;
    height: 100%;
}

#img2 {
    width: 100%;
    height: auto;
}

#img3 {
    width: auto;
    height: 100%;
}

.carousel-image.active {
    opacity: 1;
}

.carousel-arrow {
    position: absolute;
    cursor: pointer;
    color: #bcbbbc;
    font-size: 20px;
    z-index: 100;
    display: inline-block;
}

.left-arrow {
    left: 17px;
}

.right-arrow {
    right: 17px;
}

.carousel-indicators {
    position: absolute;
    bottom: 15px;
    display: flex;
}

.circle {
    width: 7px;
    height: 7px;
    margin: 0 4px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
}

.circle.active {
    background-color: #474145;
}

#content {
    align-self: flex-start;
    width: calc(100vw * 0.4);
    height: calc(100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-left: 20px;
}

#text-container {
    align-self: flex-start;
    width: calc(100vw*0.379);
}

#title {
    color: #211B1F;
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-size: 2em;
    line-height: 1;
    vertical-align: top;
}

#description {
    color: #211B1F;
    font-family: "Nunito Sans", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1em;
    line-height: 1.75;
}

.date {
    color:#a6a4a5;
}

#waitlist {
    background-color: #211B1F;
    color: #F3F3F3;
    margin-left: 0px;
    font-family: "Nunito Sans", sans-serif;
    font-optical-sizing: auto;
    font-size: 1em;
    border-radius: 7px;
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.5s ease;
}

#waitlist:hover {
    background-color: #F3F3F3;
    color: #211B1F;
}

#email-form, #thank-you-message {
    opacity: 0;
    transition: opacity 0.5s ease;
    font-size: 1em;
    border-radius: 7px;
    display: none;
    justify-content: center;
    align-items: center;
}

#email-form {
    background-color: #F3F3F3;
    color: #211B1F;
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: space-between;
}

#email-input {
    margin-left: 10px;
    font-size: 1em;
    font-family: "Nunito Sans", sans-serif;
    font-optical-sizing: auto;
    width: 94%;
    background: transparent;
    border: 0px;
    color: inherit;
}

#email-input:focus {
    outline: none;
}

#submit-email {
    margin-right: 10px;
    font-family: "Nunito Sans", sans-serif;
    color: #211B1F;
    font-optical-sizing: auto;
    width: 6%;
    background: transparent;
    border: none;
    cursor: pointer;
}

#thank-you-message {
    background-color: #F3F3F3;
    color: #211B1F;
    margin-left: 0px;
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    border-radius: 7px;
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.5s ease;
}

@media screen and (max-width: 900px) {
    #header {
        background-color: #FEFDFD;
        color: #211B1F;
        height: 50px;
        width: 100vw;
        font-family: "Inter", sans-serif;
        font-optical-sizing: auto;
        font-size: 13px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    #foreground {
        width: 100vw;
        height: 100%;
        margin-top: 0px;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: relative;
    }

    #mainimg {
        background-color: #F3F3F3;
        border-radius: 7px;
        width: calc(100vw - 40px);
        height: calc(100vw - 40px);
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .carousel-arrow {
        display: none;
    }

    #content {
        align-self: flex-start;
        height: calc(100%);
        width: calc(100vw - 40px);
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0px;
    }

    #text-container {
        align-self: flex-start;
        width: calc(100vw - 40px);
        margin-top: 20px;
        margin-bottom: 20px;
    }

    #title {
        width: 100%;
        color: #211B1F;
        font-family: "Roboto", sans-serif;
        font-optical-sizing: auto;
        font-weight: 500;
        font-size: 2em;
    }

    #description {
        color: #211B1F;
        width: calc(100vw - 80px);
        font-family: "Nunito Sans", sans-serif;
        font-weight: 400;
        font-style: normal;
        font-size: 1em;
    }

    .waitlist {
        background-color: #211B1F;
        color: #F3F3F3;
        font-family: "Nunito Sans", sans-serif;
        font-optical-sizing: auto;
        border-radius: 7px;
        height: 50px;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: all 0.5s ease;
    }
    
    .waitlist:hover {
        background-color: #F3F3F3;
        color: #211B1F;
        font-weight: 600;
    }
}