body {
    padding: 0;
    margin: 0;
}

.site_header {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background-color: green;
    background-image: url(images/first_root.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 1;
    position: fixed;
}

.space_holder {
    display: block;
    width: 100%;
    height: 93%;
}

.section {
    margin-left: auto;
    margin-right: auto;
    display: block;
    padding: 50px;
    line-height: 25px;
    max-width: 500px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.section_header {
    display: block;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 30px;
    font-weight: 600;
    border-bottom: 1px solid lightgray;
    margin-bottom: 35px;
    padding-bottom: 35px;
}

.photo {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    background-color: green;
    background-image: url(images/second_root.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}

.site_title {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: relative;
    background-color: transparent;
    padding-top: 20px;
    padding-bottom: 20px;
}

.gradient {
    background: radial-gradient(#000 0%, transparent 100%);
    transition: background-image 12s ease-in-out;
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    opacity: 0.8;
}

.gradientSmall {
    background: radial-gradient(#000 0%, #000 100%);
}

.welcome_text {
    display: block;
    width: 300px;
    color: white;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
    font-weight: 600;
    position: absolute;
    right: 0;
    top: 50%;
}

#logo {
    display: block;
    width: 300px;
    height: 100%;
    max-height: 400px;
    background-image: url(images/cafenaluzie_logo_white.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.gallery {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left:20px;
    padding-right: 20px;
    margin-bottom: 100px;
}

.item {
    display: block;
    width: 277px;
    height: 277px;
    background-image: url(images/second_root.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-sizing: border-box;
    cursor: pointer;
}

.item:hover {
    border: 3px solid lightgray;
}

#floatingBox {
    display: block;
    width: auto;
    height: auto;
    border: 5px solid lightgray;
    position: fixed;
    z-index: 10;
    top: 0;
}

#floatingBox img {
    width: 80%;
    height: 80%;

}