* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  
}
html,
body {
  width: 100%;
  height: 100%;
 
}
body {
  background-color: #322830;
  font-family: "Roboto", sans-serif;
}

.menu {
  position: fixed;
  bottom: 10px;
  left: 10px;
  width: 100%;
}

.mobile-holder {
  width: 100%;
  height: 100%;
  border-radius: 7px;
  overflow: hidden;
  background-color: #e4cccb;
}

.hamburger-container {
  background-color: #be1e2e;
  width: 200px;
  height: 200px;
  position: relative;
  cursor: pointer;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin-top: -115px;
  margin-left: -123px;
  z-index: 10;
  top: 100% !important;
}

.hamburger {
  width: 22px;
  position: absolute;
  left: 142px;
  border-top: 2px solid #fff;
  cursor: pointer;
  z-index: 1;
  top: 136px;
  transform: rotate(65deg);
}

.hamburger:after {
  content: "";
  display: block;
  border-top: 2px solid #fff;
  margin-top: 4px;
}
.hamburger:before {
  content: "";
  display: block;
  border-top: 2px solid #fff;
  margin-top: 4px;
}

.plus {
  width: 20px;
  position: absolute;
  border-top: 3px solid #fff;
  cursor: pointer;
  z-index: 1;
  left: 86px;
  top: 165px;
}
.plus:after {
  content: "";
  display: block;
  border-top: 3px solid #fff;
  margin-top: -3px;
  transform: rotate(90deg);
}

.page-body {
  width: 100%;
  height: 100%;
  position: relative;
  top: -85px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
  transform-origin: 0 0;
}
.hamburger-container:not(.open) {
  transform: rotate(294deg);
}

.plus {
  transform: rotate(165deg);
}

.hamburger-container.open {
  transform: rotate(240deg);
}

.page-body.open {
  transform: rotate(-20deg);
}

.row {
  height: 100vh;
  background-image: url("assets/logo1.jpg");
  background-size: cover;
  background-position: center;
  box-shadow: rgba(190, 30, 46, 0.4) -5px 5px, rgba(190, 30, 46, 0.3) -10px 10px,
    rgba(190, 30, 46, 0.2) -15px 15px, rgba(190, 30, 46, 0.1) -20px 20px,
    rgba(190, 30, 46, 0.05) -25px 25px;
}

nav > ul > li {
  list-style: none;
  display: inline;
  margin-right: 10px;
  display: flex;
  justify-content: start;
  align-items: center;
}

nav {
  position: fixed;
  bottom: 150px;
  left: 0;
  width: 100%;
  padding: 10px 0;
  z-index: 1000;
}

nav > ul > li > a {
  text-decoration: none;
  color: black;
  font-size: 20px;
  font-weight: 600;
  padding: 10px;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.gosipa {
  display: block;
  width: 90px;
  height: 90px;
  position: absolute;
  right: calc(50% - 45px);
  bottom: 45%;
  z-index: 100000;
}

.gosipa a {
  display: inline-block;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-color: #be1e2e;
  background-size: contain;
  box-shadow: 15px 15px 50px rgba(0, 0, 0, 0.2);
  font-size: 30px;
  text-align: center;
  line-height: 70px;
  color: #fff;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  animation: morphing 5s linear infinite;
  box-shadow: 0 0 0 0 rgba(190, 30, 46, 0.3), 0 0 0 4px rgba(190, 30, 46, 0.3),
    0 0 0 8px rgba(190, 30, 46, 0.3), 0 0 0 18px rgba(190, 30, 46, 0.3);
}

@keyframes morphing {
  0% {
    border-radius: 30% 70% 70% 30%/30% 30% 70% 70%;
  }
  25% {
    border-radius: 58% 42% 75% 25%/76% 46% 54% 24%;
  }
  50% {
    border-radius: 50% 50% 33% 67%/55% 27% 73% 45%;
  }
  75% {
    border-radius: 33% 67% 58% 42%/63% 68% 32% 37%;
  }
}

.cover_name {
  display: block;
  width: max-content;
  position: absolute;
  left: 0px;
  top: 150px;
  transform: rotate(90deg) rotateZ(0deg);
  transform-origin: top left;
  font-size: 22px;
  line-height: 26px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  padding: 4px 12px;
  background-color: #BE1E2E;
  color: #fff;
  border-radius: 0px 0px 5px 5px;
  letter-spacing: 1px;
}
