.container {
    display: flex;
    flex-direction: column;
    margin: 0;
    min-height: 95vh;
    padding: 20px;
    box-sizing: border-box;
    border: 1px solid #ff5e00;
    border-radius: 15px;
    background-color: #fc4d08;
    overflow: visible;
    position: relative;
    max-width: 400px;
}
h4,h1 {
    color: aqua;
}
.your-way {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-end;
    position: relative;
    z-index: 2;
    h1 {
        font-size: 35px;
        margin: 0;
    }
    span {
        display: inline;
    }
}
#hotel_de_ville {
    border-radius: 15px;
    position: absolute;
    top: 80px;
    right: 20px;
    z-index: 1;
    width: 300px;
    height: auto;
}
.description {
    display: flex;
    flex-direction: column;
    margin-top: 300px;
    z-index: 3;
    h4 {
        font-size: 25px;
        margin:0;
    }
    img {
        width: 100%;
        max-width: 300px;
        height: auto;
    }
}
.desc {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.inline-button {
    font-size: 16px;
    margin-left: 10px;
    padding: 8px 16px;
    border: none;
    border-radius: 15px;
    background-color: #fff;
    color: #fc4d08;
    font-weight: bold;
    cursor: pointer;
    vertical-align: middle;
}
.exploration {
    h1 {
        font-size: 25px;
    }
    img {
        width: 100%;
        max-width: 300px;
        height: auto;
        border-radius: 15px;
    }
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
p {
    border: 1px solid black;
    border-radius: 15px;
    padding: 20px;
    width: 100%;
    max-width: 400px;
    box-sizing: border-box;
}
.button-div, .ready {
    display: flex;
    justify-content: center;
    align-items: center;
}
@media (min-width: 500px) {

}