html {
    scroll-behavior: smooth;
    padding-top: 3.5rem;
}

body {
    background-color: #fafafa;
    font-family: "Plus Jakarta Sans Regular", sans-serif;
}

#title {
    text-align: center;
    font-size: 4rem;
    margin: 0;
    padding: 1.5rem 0rem 1.5rem 0rem;
}

#lifts-container{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding-bottom: 2rem;
    width: 100%;
}

.lift {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    word-wrap: break-word;
    background-color: #fff;
    /* margin: 0vw 20vw; */
    /* margin-left: 3rem; */
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.03);
    width: 50rem;
    /* width: 80%; */
}

.lift:hover {
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.25);
    transition: box-shadow 0.3s ease-in-out;
}

.lift > h1 {
    padding: 0.8rem 0rem 0.8rem 2rem;
    font-size: 1rem;
}

.lift > p {
    padding-right: 2rem;
}

.status {
    position: absolute;
    left: 50%;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.circle {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.green {
    background-color: #83B692;
}

.red {
    background-color: #FF6163;
}

@media screen and (min-width: 769px) and (max-width: 1024px){ /* tablet */
    #title {
        /* background-color: yellow; */
        font-size: 3.5rem;
    }

    .lift {
        max-width: 80%;
    }
}

@media screen and (max-width: 768px){ /* mobil */
    #title {
        /* background-color: orange; */
        font-size: 3rem;
    }

    .lift {
        max-width: 80%;
    }
    .lift h1 {
        max-width: 15rem;
    }

    .open-hours {
        display: none;
    }

    .status p {
        display: none;
    }
    .status {
        left: 90%;
        /* right: 50%; */
    }
}


