.hero {
    text-align: center;
    background-color: black;
    
}


.hero p {
    margin-top: 80px;
    font-size: 2rem;
    color: white;
}

.picture_container {
    height: 60vh;
    background-image: url(../bilder/biohazard_header.png);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.room_description {
    display: flex;
    justify-content: space-evenly;
    margin-bottom: 100px;
    gap: 3rem;
    margin-left: 30px;
    margin-right: 30px;
}    

.room_description img {
    width: 100%; 
    max-width: 45%; 
    height: auto;
    object-fit: cover;
    border-radius: 10px;
}



.text_content {
    
    border-radius: 15px;
    
    text-align: left;
    font-family: Lato-text;
    font-size: var(--font-size-text);
}

.text_content p {
    font-family: Lato-text;
    font-size: var(--font-size-text);
    line-height: 1.4;
    margin-bottom: 2rem;
}


.info_table{
    background-color: rgb(18, 18, 18);
    border-radius: 15px;
    padding: 70px;
    text-align: left;
    font-family: Lato-text;
    font-size: var(--font-size-text);
    width: 100%;
    max-width: 45%;
    border-collapse: collapse;
    flex-shrink: 0;
}

.info_table th, .info_table td {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    vertical-align: center;
    padding: 10px 20px;
}



body {
    font-family: Lato-text;
}

main {
    color: white;
}



h2 {
    color: white;
    font-family: Cinzel;
    text-align: center;
    font-size: var(--font-size-h2);
    padding-top: 50px;
    padding-bottom: 50px;
}

h3 {
    font-size: var(--font-size-h3);
    font-weight: bold;
    color: var(--color-accent);
}


@media screen and (max-width: 1058px) {
    :root {
        --font-size-h2: 2.5rem;
        --font-size-text: 1.2rem;
         
    }
}

@media screen and (max-width: 820px) {
    .room_description {
        flex-direction: column;
        align-items: center;
    }

    .room_description img {
    width: 100%; 
    max-width: 70%; 
    }
}

@media screen and (max-width: 500px) {
    .room_description img {
        width: 100%; 
        max-width: 95%; 
    }
}