body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: 'Poppins';
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

main {
    display: flex;
    flex-direction: column;
}

footer {
    background-color: rgb(228 203 76);
    color: white;
    text-align: center;
    padding: 1em 0;
    position: relative;
    bottom: 0;
    width: 100%;
}

@media (min-width: 800px) {
    #booking {
        padding: 50px 20px;
        margin: 0 -20px;
    }

    #prices,
    #booking-buttons {
        flex-direction: row;
    }

    h1 {
        font-size: 60px;
    }

    section {
        margin: 1vh 0;
        padding: 1vh;
    }
}

@media (max-width: 800px) {
    #booking {
        padding: 30px 10px;
    }

    #prices,
    #booking-buttons {
        flex-direction: column;
    }

    .prices-section {
        width: 90%;
    }

    h1 {
        font-size: 40px;
    }

    section {
        margin: 10px 0;
        padding: 10px;
    }
}

#logo {
    max-height: 15vh;
    margin: 2vh;
}

#round-button-phone {
    background-color: #06556f;
    border-radius: 50%;
    max-width: 10vh;
    max-height: 10vh;
    min-width: 8vh;
    min-height: 8vh;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    margin: 1vh;
}

#button-phone {
    background-color: rgb(241 207 180);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border-radius: 100px 100px 100px 100px;
    box-sizing: border-box;
    max-height: 8vh;
    min-height: 6vh;
    align-self: flex-end;
    margin-bottom: 5vh;
}


#round-button-phone:hover {
    background-color: rgb(14 48 75);
}

.phone-svg-top {
    margin-top: 0.5vh;
    max-width: 4vh;
    min-width: 3vh;
    fill: white;
}

.phone-svg-bottom {
    margin-right: 0.5vh;
    max-width: 2.5vh;
    fill: black;
}

.phone-svg {
    transition: max-width 0.3s;
}

.phone-svg-top:hover,
.phone-svg-top:active {
    max-width: 3.5vh;
    min-width: 2.5vh;
}

.phone-svg-bottom:hover,
.phone-svg-bottom:active {
    max-width: 3vh;
}

#booking {
    background-image: url(darrigol_ramonage_files/fire.jpg);
    box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, .4);
    background-size: contain;
    background-position: center;
    background-attachment: fixed;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex: 2;
}

#booking-section {
    width: 100%;
}

#booking-buttons {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.booking-sections {
    display: flex;
    align-items: center;
    justify-content: center;
    width: max-content;
    text-align: center;
    flex-direction: column;

}

.button-booking {
    background-color: rgb(228 203 76);
    border: solid rgb(228 203 76);
    border-radius: 100px 100px 100px 100px;
    cursor: pointer;
    box-sizing: border-box;
    max-height: 10vh;
    min-height: 8vh;
    display: flex;
}

.button-booking:hover {
    background-color: transparent;
    border-color: rgb(228 203 76);
}

.text-button {
    color: white;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2vh;
    font-weight: 700;
    min-width: 20vh;
}

.text-button-inverse {
    color: black !important;
}

#prices {
    flex: 1;
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    height: auto;
}

.prices-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    margin: 2vw;
    padding: 2vw;
    flex: 1;
    height: -webkit-fill-available;
    box-shadow: 10px 10px 8px #888888;
}

.prices-text {
    max-width: 80%;
}

#tarifs {
    background-color: rgb(6, 85, 111);
    color: white;
}

#promo {
    text-align: center;
    border: 1px solid #888888;
    border-style: groove;
    color: rgb(6, 85, 111);
}

#devis {
    background-color: rgb(228 203 76);
    color: white;
}

#contact-title {
    background-color: rgb(27 52 179);
    color: black;
    margin-top: -5px;
    padding: 1%;
}

#contact {
    flex: 2;
    background-color: rgb(249 170 144);
    filter: invert(1);
    color: black;
    display: flex;
    justify-content: center;
    background-size: cover;
}

#contact-div {
    display: flex;
    flex-direction: column;
}

#logo-contact-title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

#contact-text {
    width: 60vw;
    font-size: 25px;
}

#ramoneur {
    max-width: 15vh;
    width: auto;
    filter: invert();
}

h1 {
    overflow-wrap: break-word;
    text-align: center;
    font-weight: bolder;
}

.text-inverse-color {
    background-color: black;
    color: rgb(249 170 144);
    width: fit-content;
}


.star {
    animation: blink 0.5s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}