.hero {
    text-align: center;
    background-color: black;
    
}

.picture_container {
    height: 60vh;
    background-image: url(../bilder/great_heist_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;
}

.mask_selection {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgb(30, 0, 42);
    margin-top: 100px;
    gap: 40px;
    padding-bottom: 40px;
}

.mask_selection p {
    width: 60ch;
    text-align: center;
    margin: 0 auto;
}

#mask_image {
    width: 100%;
}
.image_container {
    width: 400px;
    margin-left: auto;
    margin-right: auto;
}


.mask_button {
    text-align: center;
    margin-right: 2rem;
    font-size: var(--font-size-text);
    border: 2px;
    border-radius: 10px;
    background-color: var(--color-accent);  
}

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%; 
    }

    .mask_selection p {
        width: 45ch;
    }

    .mask_selection h2 {
        max-width: 15ch;
    }
}

@media screen and (max-width: 500px) {
    .room_description img {
        width: 100%; 
        max-width: 95%; 
    }



    .mask_selection p {
        width: 30ch;
    }

}