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

body {

    width: 100vw;
    height: 100vh;

    margin: 0;
    padding: 0;

    font-family: Metropolis, "Avenir Next", "Helvetica Neue", Arial, sans-serif;
    background-color: white;


    background: linear-gradient(176deg, white, white 75%, #54A0FC calc(75% + 1px), #54A0FC 100%);
}

.app-feature {
    position: absolute;
    top: 12vh;
    left: 100vw;
    width: 60%;
    height: 71%;

    -webkit-animation: slide 1s forwards;
    animation: slide 1s forwards;
    animation-delay: .35s;
}

h1 {
    color: #576574;
    font-weight: 550;
    font-size: 2.75vw;
    margin-bottom: 8vh;
    line-height: 122%;

    position: absolute;
    top: 18.5vh;
    left: 5vw;
}

span {
    color: #5F27CD;
}

.title-container {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;

    /* border: 1px solid; */

    position: absolute;
    top: 18.5vh;
    left: 5vw;

}

button {

    background: none;
    outline: none;

    background-color: #FE9F43;
    color: white;

    font-family: Metropolis, "Avenir Next", "Helvetica Neue", Arial, sans-serif;
    font-size: 0.95vw;
    text-align: center;
    font-weight: 550;

    height: 7.5vh;
    width: 19.5vw;

    border: .13em solid black;
    border-radius: 3px;

    margin-bottom: 2vh;

    position: absolute;
    bottom: 30.5vh;
    left: 5vw;
}

button:hover {
    cursor: pointer;
    background-color: #FECA57;
}

.rating-container {
    display: none;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;

    height: 2vh;
    width: 10vw;

    margin-top: 3px;
    margin-left: -2px;

    position: absolute;
    bottom: 27.5vh;
    left: 5vw;

}

.star-svg {
    height: 2.5vh;
}

.reviews {
    color: #576574;
    margin-left: 5px;
}

.icon {
    width: 4vw;
}

.icon-container {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;

    position: absolute;
    top: 25px;
    left: 25px;
}

label {
    margin-left: 27px;
    font-size: 2.4vw;
    letter-spacing: 6px;
    font-weight: 500;
    color: #54A0FC;
}

footer {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    bottom: 0;
    left: 0;
    color: white;
    padding: 15px;
    gap: 5px;
}

footer p {
    margin: 0;
    padding: 0;
}

footer a {
    color: white;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.75);
}

.modal-content {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);

    background-color: #fefefe;
    padding: 20px;
    border: 1px solid #888;
    width: 40%;
    border-radius: 10px;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

@media only screen and (max-width: 768px) {

    body {
        background: linear-gradient(173deg, rgba(255, 255, 255, 1) 37%, rgba(84, 160, 252, 1) 20%, rgba(84, 160, 252, 1) 74%, rgba(255, 255, 255, 1) 60%);
    }

    .icon-container {
        display: none;
    }

    h1 {
        color: #576574;
        font-weight: 550;
        font-size: 9.75vw;
        margin-bottom: 8vh;
        line-height: 122%;
        position: absolute;
        top: 2vh;
        left: 15vw;
    }

    .app-feature {

        position: absolute;
        display: block;
        top: 42vh;
        left: 6vw;
        width: 92%;
        height: auto;
        animation: none;
        -webkit-animation: none;

    }

    button {
        background: none;
        outline: none;
        background-color: #FE9F43;
        color: white;
        font-family: Metropolis, "Avenir Next", "Helvetica Neue", Arial, sans-serif;
        font-size: 4.75vw;
        padding-top: 3.5vh;
        padding-bottom: 3.5vh;
        padding-left: 10vw;
        padding-right: 10vw;
        text-align: center;
        font-weight: 550;
        height: auto;
        width: auto;
        border: .13em solid black;
        border-radius: 3px;
        margin-bottom: 2vh;
        position: absolute;
        bottom: 5.5vh;
        left: 9vw;
    }

    .rating-container {
        display: none;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        height: 2vh;
        width: 10vw;
        margin-top: 3px;
        margin-left: -2px;
        position: absolute;
        bottom: 3.5vh;
        left: 9vw;
    }

    footer {
        display: none;
    }

}

@-webkit-keyframes slide {
    100% {
        left: 37vw;
    }
}

@keyframes slide {
    100% {
        left: 37vw;
    }
}
