
html, body {
  text-align: center;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  background:#000000;
  color: #e0e0e0;
  font-family: "Noto Sans", monospace;
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  overflow-x: hidden;
  overflow-y: scroll; 
}
.navbar {
    position: fixed;
    min-width: 100%;
    z-index: 100;
    top: 0;
    min-height: 110px;
    box-sizing: border-box;
    background: linear-gradient(135deg, #444, #222);
    color: white;
    padding: 15px 25px;
    justify-content: left;
    display: flex;
    align-items: center;
    height: 8vh;
}
.mobile-menu {
  display: none;
}
.navbar a {
    color: white;
    text-decoration: none;
    margin-right: 25px;
    font-size: 2em;
    transition: color 0.3s ease;
}

.navbar a:hover {
    color: #81d4fa;
}

.navbar .home {
    background-color: #383838;
    border: 3px solid #252525;
    width: auto;
    height: auto;
    display: flex;
    flex-direction: row;
    margin-right: 25px;
    padding: 5px;
    cursor: pointer;
    border-radius: 10px;
    transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.navbar .home:hover {
    background-color: #4a4a4a;
    border-color: #383838;
    box-shadow: 0 4px 15px rgba(180, 180, 180, 0.3);
}

.navbar .logo-home {
    border: none;
    outline: none;
    background: none;
    filter:
        drop-shadow(0 0 10px rgba(255, 255, 255, 0.7)) drop-shadow(0 0 25px rgba(255, 255, 255, 0.5)) drop-shadow(0 0 40px rgba(255, 255, 255, 0.3));
    width: 35px;
    height: auto;
    object-fit: contain;
    display: block;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-right: 10px;
    transition: filter 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.navbar .home:hover .logo-home {
    filter:
        drop-shadow(0 0 8px rgba(255, 255, 255, 0.95)) drop-shadow(0 0 20px rgba(255, 255, 255, 0.8)) drop-shadow(0 0 40px rgba(255, 255, 255, 0.6));
    transform: scale(1.05);
}

.navbar .home span {
    width: auto;
    white-space: nowrap;
    color: white;
    text-decoration: none;
    font-size: 1em;
    margin-right: 0;
    transition: color 0.3s ease;
}

.navbar .home:hover span {
    color: #81d4fa;
}
#menu-content {
  position: fixed;
  top: 0;
  left: -45vw;
  width: 40vw;
  padding: 10px;
  height: 100vh;
  background-color: #4a4a4a;
  transition: left 0.5s ease; 
  z-index: 1000; 
  align-items: flex-start;
  justify-content: left;
  display: flex;
  flex-direction: column;
}
.linka {
  font-size: 7vw;
  color: #ffffff;
  text-decoration: none;
  transition:color 0.3s ease;
}
.linka:hover {
  color: #81d4fa;
}
.link {
  font-size: 7vw;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}
.link.open {
  color: #81d4fa;
}
.a-content {
  max-height: 0;
  overflow: hidden;
  align-items: flex-start;
  justify-content: left;
  display: flex;
  flex-direction: column;
  width: auto;
  transition: max-height 0.3s ease-in; 
}
.a-content.open{
  width: auto;
  max-height: 100%;
}
.a-content a {
  font-size: 5vw;
  margin-left: 5vw;
  color: #ffffff;
  text-decoration: none;
  transition:color 0.3s ease;
}
.a-content a:hover {
  color: #81d4fa;
}
#menu-content.menu-open {
  left: 0;
}
#mobile-menu.menu-open{
  transition: left 0.5s ease; 
  left: 46vw;
}

footer  {
  margin-top: 10px;
  width: 100%;
}
.plate {
  margin-left: 10px;
  display: flex;
  flex-direction: column;
  width: 100%;
  align-content: center;
  align-items: flex-start;
  justify-content: space-between;
}
.plate .down-row {
  display: flex;
  flex-direction: row;
  width: 100%;
  align-content: center;
  align-items: flex-start;
  justify-content: space-evenly;
}
.plate .up-row {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-content: flex-start;
  align-items: flex-start;
  justify-content: flex-start;
}
.plate .address-content {
  display: flex;
  flex-direction: row;
  width: 100%;
  align-content: center;
  align-items: center;
  justify-content: center;
}
.plate .footer-CopyRight-content {
  margin-top: 10px;
  display: flex;
  flex-direction: row;
  width: 100%;
  align-content: center;
  align-items: center;
  justify-content: center;
}
.row{
  display: flex;
  flex-direction: column;
  width: 100%;
  align-content: center;
  align-items: flex-start;
  justify-content: space-evenly;
}
.row h1 {
  color:#81d4fa;
  font-size: 1.5em;
}
.row h2, .row a{
  color: #e2e2e2;
  text-decoration: none;
  font-size: 1em;
  transition: color 0.3s ease;
}
.row a:hover{
  color: #8697a7;
}
.up-row h1 {
  font-size: 1.8em;
}
.up-row  p {
  font-size: 1em;
}
.address-content a, .address-content p{
  color: #ffffff;
  transition: color 0.3s ease;
  text-decoration: none;
}
.address-content a:hover {
  color:#81d4fa;
}
.nav-bar-icons-row {
  width: 60%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  min-height: 100px; 
}
.media-link img{
  width: 80%;
  height: 80%;
  object-fit: contain;
  margin: none;
}
.media-link {
  display: block;
  width: 50px;
  height: 50px;
  background-repeat: no-repeat;
  background-position: center;
  background-clip: content-box; 
  text-decoration: none;
}
#Email img{
  height: 65%;
  width: 65%;
}
@media screen and (max-width:767px) {
  .navbar {
    display: None;
  }
  .mobile-menu {
    position: fixed;
    z-index: 100;
    top: 0;
    display: block;
    width: auto;
    height: auto;
    display: flex;
    cursor: pointer;
    margin: 5px;
  }
  #mobile-menu{
    position: fixed; 
    background-color: #383838;
    color: #ffffff;
    font-size: 5vw;
    border-radius: 30px;
    border: 3px solid #e2e2e2;
    left: 5px;
    transition: left 0.5s ease; 
  }
  .plate .down-row {
    flex-direction: column;
  }
  .row h1 {
    font-size: 1.7em;
  }
  .row h2 {
    font-size: 1.5em;
  }
  .up-row h1 {
    font-size: 1.5em;
  }
  .up-row  p {
    font-size: 0.8em;
  }
  .footer-CopyRight-content p {
    font-size: 0.7em;
  }
}