*,
*::before,
*::after {
    box-sizing: border-box;
}
:root {
    --header-height: 82px;
}

html,
body {
    width: 100%;
    height: 100%; 
    margin: 0;
    padding: 0;
    font-family: 'Poppins', serif, sans-serif;
    background-color: rgba(218, 177, 218, 0.1);
}

body {
    padding-top: var(--header-height);
    display: flex;
    flex-direction: column;
    min-height: 100vh; 
}
@media (max-width: 480px) {
    :root {
        --header-height: 70px;
    }
}
body a {
    text-decoration: none;
    color: purple;
}
.accom{
    background-color: white; 
    color: purple;
    width: auto;
    max-width: 100%;
    height: 50em;
    border-block: solid;
    border-block-color: black;
    border-radius: 1%;
    justify-content: center;
    justify-items: center;
    align-self: center;
    text-align: center;
    font-size: 18px;
}
.accommodation-item img{
    width: 14rem;
    height: 12rem;
}
