body {
    background-color: black;
    margin: 0;
    font-family: Arial, sans-serif;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.visually-hidden-focusable {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
  
.visually-hidden-focusable:active,
.visually-hidden-focusable:focus {
    position: static;
    width: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    clip: auto;
    white-space: normal;
}

h1 {
    text-align: center;
    color: aliceblue;
    font-size: 2.5rem;
}

.container {
    margin-top: 10px;
    margin-left: 10px;
    position: absolute;
    cursor: pointer;
    z-index: 2;
}

.bar1, .bar2, .bar3 {
    width: 30px;
    height: 4px;
    background-color: #ffffff;
    margin: 6px 0;
    transition: 0.5s;
}

.change .bar1 {
    transform: translate(0, 9px) rotate(-45deg);
}

.change .bar2 {
    opacity: 0;
}

.change .bar3 {
    transform: translate(0, -11px) rotate(45deg);
}

.sidebar {
    height: 100vh;
    width: 0;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgb(37, 37, 37);
    overflow-x: hidden;
    transition: 0.6s;
    padding-top: 65px;
}

.sidebar a {
    padding: 10px 20px;
    text-decoration: none;
    font-size: 1.2rem;
    color: white;
    display: block;
    transition: 0.3s;
}

.sidebar a:hover {
    background-color: #575757;
}

#aktualis {
    color: black;
    background-color: #8e8e8e;
}

#site {
    min-height: 100vh;
}

#rooms_bg {
    margin: auto;
    padding: 15px;
    align-items: center;
    text-align: center;
    max-width: 1250px;
    width: 90%;
    background-color: rgb(37, 37, 37);
    color: aliceblue;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgb(83, 83, 83);
}

.room {
    background-color: rgb(50, 50, 50);
    padding: 5px;
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgb(50, 50, 50);   
    margin: 20px;
}

.room_details {
    display: flex;
    align-items: center;
}

.room_text_and_table {
    width: 100%;
    padding-bottom: 5px;
    font-size: 1.2rem;
    line-height: 1.5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

p {
    text-align: justify;
    padding: 5px;
}

img {
    width: 90%;
}

.tablazat {
    border: 2px solid;
    border-spacing: 20px 5px;
}

@media (max-width: 1024px) {
    h1 {
        font-size: 2rem;
    }

    .room_details {
        flex-direction: column;
    }

    .room_text_and_table {
        width: 100%;
        padding: 10px;
    }

    img {
        max-width: 70%;
        margin: 10px 0px 10px 0px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.5rem;
    }

    .room {
        margin: 10px 0;
    }

    .tablazat {
        border-spacing: 10px 3px;
    }
}

caption {
    margin: 5px 0px 5px 0px;
}

.external:default {
    color: #43a49d;
}

.external:visited {
    color: #8e8e8e;
}

details {
    cursor: default;
}

footer { 
    background-color: #0e1432;
    padding: 10px 0px 10px 0px;
}

footer p {
    text-align: center;
    margin: 0px;
    color: aliceblue;
    line-height: 0.8;
    font-size: 1rem;
}

aside {
    border: 1px solid aliceblue;
    padding: 0px 0px 0px 14px;
    line-height: 1.5;
    text-align: left;
    color: aliceblue;
}

aside li {
    font-size: 1rem;
}