body {
    font-family: Raleway, serif;
    background-color: lightgray;
}

.home-picture{
    display: flex;
    justify-content: center;
    width: 100%;
    height: auto;
}
.header{
    display: flex;
    justify-content: center;
}




.main{
    width:100%;
    height:100vh;
    background:url("media/billeder/huset1.jpg");
    background-size: cover;
    display: flex;
    justify-content: center;
    flex-direction: row;


}

.header-box{
    backdrop-filter:blur(5px) brightness(110%);
    justify-content: center;
    width: 70%;
    height: 9%;
    padding: 10px;
    background-color: #801818;
    color: white;

}

.box{
    backdrop-filter:blur(20px) brightness(110%);
    background-color: #801818;
    position: center;
    color: white;
    width: 30%;
    padding: 60px 15px 20px 15px;

}

.white-font{
    color: white;
}
.header-info-box{
    text-align: center;

}


.about-box{
    background-color: #801818;
    justify-content: center;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 9%;
    padding: 10px;
    color: white;
}
.about-box-parts{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.room-fields{
    margin-top: 20px;
    border: 1px solid white;
    padding: 10px 100px 10px 10px;

}
.test{
    overflow-y: scroll; height:500px;
}

.add-booking{
    margin-top: 15px;
}

.input-access{
    width: 300px;
}


.submit-access{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    height: 30vh;
}

.button-33 {
    background-color: #c41717;
    border-radius: 100px;
    box-shadow: rgba(128, 24, 24, .2) 0 -25px 18px -14px inset,rgba(128, 24, 24, .15) 0 1px 2px,rgba(128, 24, 24, .15) 0 2px 4px,rgba(128, 24, 24, .15) 0 4px 8px,rgba(128, 24, 24, .15) 0 8px 16px,rgba(128, 24, 24, .15) 0 16px 32px;
    color: white;
    cursor: pointer;
    display: inline-block;
    padding: 7px 20px;
    text-align: center;
    text-decoration: none;
    transition: all 250ms;
    border: 0;
    font-size: 20px;
    user-select: none;
    width: 300px;
}

.button-33:hover {
    box-shadow: rgba(128, 24, 24,.35) 0 -25px 18px -14px inset,rgba(128, 24, 24,.25) 0 1px 2px,rgba(128, 24, 24,.25) 0 2px 4px,rgba(128, 24, 24,.25) 0 4px 8px,rgba(128, 24, 24,.25) 0 8px 16px,rgba(128, 24, 24,.25) 0 16px 32px;
    transform: scale(1.05) rotate(-0.5deg);
}


                                                       /* CSS */



/*Gallery*/
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}


.heading {
    text-align: center;
    font-size: 2.0em;
    letter-spacing: 1px;
    padding: 40px;
    color: white;
}

.gallery-image {
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.gallery-image img {
    height: 250px;
    width: 350px;
    transform: scale(1.0);
    transition: transform 0.4s ease;
}

.img-box {
    box-sizing: content-box;
    margin: 10px;
    height: 250px;
    width: 350px;
    overflow: hidden;
    display: inline-block;
    color: white;
    position: relative;
    background-color: white;
}

.img-img{
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    object-fit: cover;
}

.caption {
    position: absolute;
    bottom: 5px;
    left: 20px;
    opacity: 0.0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.transparent-box {
    height: 250px;
    width: 350px;
    background-color:rgba(0, 0, 0, 0);
    position: absolute;
    top: 0;
    left: 0;
    transition: background-color 0.3s ease;
}

.img-box:hover img {
    transform: scale(1.1);
}

.img-box:hover .transparent-box {
    background-color:rgba(0, 0, 0, 0.5);
}

.img-box:hover .caption {
    transform: translateY(-20px);
    opacity: 1.0;
}

.img-box:hover {
    cursor: pointer;
}

.caption > p:nth-child(2) {
    font-size: 0.8em;
}

.opacity-low {
    opacity: 0.5;
}







.guides{
    display: flex;
    flex-direction: row;
}

.guides-section{
    width: 30%;
    justify-content: center;
    text-align: center;
    margin: 10px;
}

.guide-pic{
    width: 100%;

    background-image: radial-gradient(closest-side ellipse, #7e7070, #aba6a6, lightgray);
}
