body {
    margin: 0;
    padding: 0;
}

nav {
	position: sticky;
	top: 0;
	z-index: 4;
}

nav {
	position: sticky;
	display: flex;
	justify-content: space-around;
	align-items: center;
	min-height: 8vh;
	background-color:#320a0a;
}

.navbar {
    background-color: #320a0a;
    padding: 15px;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.menu {
    list-style-type: none;
    display: flex;
    gap: 150px;
    
}

.menu li {
    list-style: none;
    flex-grow: 1;
    text-align: center;
   
}

.menu a {
    color: rgb(226, 226, 226);
    text-decoration: none;
    letter-spacing: 3px;
    font-size: 17pt;
}

.menu-toggle {
    cursor: pointer;
    display: none;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 5px 0;
}

.big_logo {
    padding: 20px;
    height: 280px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 24%;
  }

  .cukiernia_logo img {
    height: 270px;
  }

  .contact_logo img {
    height: 50px;
  }

  .contact_logo {
    margin-left: 10%;
  }

.galeria {
    padding: 5px;
    display: flex;
    flex-wrap: wrap;
    margin-top: 5%;
    align-items: center;
    justify-content: space-around;
}

.galeria div {
    margin: 10px;
    width: 400px;
    flex-wrap: wrap;
    text-align: center;
    display: flex;
    justify-content: space-around;
}

.galeria img {
    height: 300px;
    width: 400px;
}
 

.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 20px;
}

.thumbnail {
    margin: 10px;
    cursor: pointer;
}

.modal {
    display: none;
    position: fixed;
    z-index: 5;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 80%;
    max-height: 80%;
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    font-size: 40px;
    color: #f1f1f1;
    cursor: pointer;
}

.footer {
    background-color: rgba(93, 23, 23, 0.222);
    display: block;
    width: 100%;
    padding-bottom: 0.2em;
    height: auto;
    padding-top: 5em;
    text-align: center;
    margin-top: 5%;
}

#prawa {
    margin-top: auto;
    margin-bottom: 0;
    color:rgb(139, 135, 135)
}

.logo2 {
    max-height: 250px;
    width: auto;
    margin-bottom: 25px;
}


#nrtel {
    display: inline-block;
}

@media (max-width: 800px) {
    .big_logo {
      padding: 20px;
      height: 280px;
      display: flex;
      flex-direction: column;
      align-content: center;
      margin: 0;
    }
    
}    

@media (max-width: 1200px) {
    .menu { 
        gap: 100px;
    }
}    

@media screen and (max-width: 800px) {
    .menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 1%;
        right: 1%;
        background-color: #320a0a;
        text-align: center;
        gap: 10px;
        align-content: center;
        padding-left: 0;
    }

    .menu-toggle {
        display: block;
    }
}

@media (max-width: 430px) {
    .galeria img {
        height: 300px;
        width: 100%;
    }
}