@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@700&display=swap');
* {
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
}
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
}

body {
    font-family: Arial, sans-serif;
    overflow-x: hidden;
    position: relative;
    width: 100%;
    background-color: white;
}
.hero {
    position: relative;
    width: 100%;        
    height: 500px;
    background-image: url('galery_furniture/404-klasika.jpg');
    background-size: cover;
    background-position: top;
    margin-bottom: 150px;
}

.logo {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    z-index: 2;
    
    border: 10px solid white;
}
.about-text {
    text-align: center;
    padding: 0 20px;
}

.about-text h1 {
    font-size: 32px;
    margin-bottom: 8px;
}

.about-text p {
    font-size: 16px;
    color: #000000;
    padding-bottom: 20px;
}
h1 {
    padding-top: 20px;
    font-size: 32px;
    margin: 0 0 8px 0;
}

.facebook-white {
    width: 25px;
    height: 25px;
     filter: brightness(0) invert(1);
}
.endbar{
    
    position: relative;
    width: 100%;
    height: auto;
    background-color: #202020;
    text-align: center;
         
    padding-bottom: 20px;
    scroll-margin-top: 60px;
    color: #f6eada;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
}
.content{
    text-align: center;
    padding: 5px 10px;

    scroll-margin-top: 60px;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 80px 20px 20px 20px;
    box-sizing: border-box;
}

.gallery-grid img {
    width: 100%;
    max-height: 700px;
    object-fit: cover;
    box-shadow: 5px 5px 5px grey;
}