body {
    margin: 0;
    font-family: "Ubuntu", sans-serif;
}
html{
    scroll-behavior: smooth;
}
#progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: #ffcc00;
    box-shadow: #370f0f 0px 1px 10px;
    z-index: 1000;
}


#logo {
    width: 100px;
    height: auto;
    margin-bottom: 10px;
 }

 #top-container {
    background: linear-gradient(#e21111, #370f0f);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    height: 70vh;
    color: white;
}

#top-container p {
    font-size: 1em;
    max-width: 600px;
    text-align: center;
}
#coming-soon {
    font-size: 1.5em;
    margin-top: 10px;
    padding: 5px 5px;
    height: 2em;
    width: 12em;
    background-color: #e4371c;
    color: #4A0002;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#features {
    padding: 20px;
    background-color: #f4f4f4;
    min-height: 50vh;
    max-width: 100vw;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

#features img {
    max-width: auto;
}
#features h2 {
    color: #4A0002;
    margin-bottom: 2em;
}

#features ul {
    max-width: 300px;
    padding: 0 20px;
    list-style: none;
}
#features ul li {
    margin-bottom: 1em;
    margin-top: 1em;
}

#features ul li::before {
  content: "";
  display: inline-block;
  width: 16px;   
  height: 16px;
  background-image: url("star64.png");
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 8px;
}

#waitlist {
    padding: 20px;
    background-color: #E4371C;
    color: white;
}

#waitlist h2 {
    color: #4A0002;
}


/* Media Queries */

@media screen and (max-width: 830px) and (min-width: 720px) {
    #top-container {
        height: auto;
        padding: 40px 20px;
    }

    #features {
        min-height: 400px; 
        position: relative; 
    }

    #features img {
        position: absolute;
        right: 0;
        max-width: 100%;
        margin-bottom: 20px;
        z-index: 1;
    }

    #features-text {
        max-width: 100%;
        padding: 0;
        background-color: transparent;
        z-index: 5;
        position: absolute;
        left: 20px;
    }
}

@media screen and (max-width: 440px) {
    #features img {   
        max-width: 100%;
        height: auto;
    }
}

@media screen and (min-height: 1000px) {
    #features img {   
        max-height: 392px;
    }
     #features {
        height: 400px;  
    }
}

footer{
    height: 4em;
    background-color: #370f0f;
    color: white;
    align-items: center;
    justify-content: center;
    display: flex;
}
footer a {
    text-decoration: none;
    color: white;
}
footer a:hover{
    color: rgb(189, 186, 186);
    animation-duration: 500ms;
}

