* {
  margin: 0;
  padding: 0;
}

body {
  background-image: url(images/fon.jpg);
  background-size: cover;
  margin-top: 12%;
}

header {
  display: flex;
  justify-content: space-around;
  align-items: center;
  background-color: #6e4a3d;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}

ul {
  display: flex;
  justify-content: space-around;
  width: 100%;
}
a {
  text-decoration: none;
  color: black;
  font-size: 30px;
}
li {
  list-style: none;
}

nav {
  width: 80%;
}
footer {
  background-color: rgba(193, 112, 7, 0.69);
  height: 10vh;
  margin-top: 5%;
}

.logo {
  width: 150px;
}
.burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  cursor: pointer;
  z-index: 10;
}

.burger span {
  display: block;

  height: 3px;
  background-color: #fff;
  border-radius: 2px;
}

.burger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.burger.active span:nth-child(2) {
  opacity: 0;
}
.burger.active span:nth-child(3) {
  transform: translateY(-11px) rotate(-45deg);
}

.cat {
  width: 400px;
  border-radius: 30px 0 0 30px;
}

.coli {
  width: 300px;
  border-radius: 15px;
}
.contener {
  display: flex;
  justify-content: space-around;
  margin: 5%;
}

.colo {
  width: 300px;
  border-radius: 15px;
}
.tex {
  width: 50%;
}

.spisoc-coffe {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: rgba(158, 93, 18, 0.488);
  border-radius: 0 30px 30px 0;
  width: 100%;
}

.menyfoto {
  width: 400px;
  height: 400px;
  border-radius: 15px;
}
.menu {
  display: flex;
  justify-content: center;
  max-width: 1000px;
  flex-wrap: wrap;
  gap: 50px;
  padding: 0 15%;
}
.menu1 {
  display: flex;
  justify-content: center;
  font-size: 40px;
  margin: 20px 0;
  background-color: rgba(158, 93, 18, 0.488);
}
.asp {
  font-size: 25px;
  display: flex;
  justify-content: center;
  margin-bottom: 5px;
}

@media (max-width: 768px) {
  a {
    font-size: 20px;
  }
}
@media (max-width: 548px) {
  ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 80px;
    right: 0;
    background-color: #432818;
    width: 100%;
    padding: 20px 0;
  }
  ul.show {
    display: flex;
  }

  ul li {
    margin: 10px 0;
    text-align: center;
  }
  .burger {
    display: flex;
  }
  a {
    font-size: 15px;
  }
  .cat1 {
    width: 200px;
    height: 200px;
  }
  .cat {
    width: 200px;
    height: 200px;
  }
}
