.bottombar, .menubottombar {
  background-image: linear-gradient(180deg, rgb(58, 58, 58), black);
  position: relative;
  width: 100%;
  height: 150px;
  top: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.bottombarcontainer {
  text-align: center;
  width: 50%;
  height: 100%;
}

.bottombarbox{
  position: relative;
  height: 150px;
  width: 250px;
  display: inline-block;
  margin-left: 10px;
  margin-right: 10px;
  vertical-align: top;
  max-width: 100%;
}

.bottomlogo {
  object-fit: scale-down;
  position: relative;
  z-index: 2;
  height: 60px;
  top: 40px;
}

.menu {
  position: relative;
  z-index: 2;
  top: 50px;
}

.menubutton {
  border: none;
  color: white;
  padding: 12px 50px;
  text-align: center;
  text-decoration: none;
  font-size: 17px;
  cursor: pointer;
  background: transparent;
  border: 1px solid white;
  border-radius: 30px;
  transition: 0.3s;
}

.menubutton:hover {
  background-color: white;
  color: black;
}

.contactbox {
  width: 100%;
  margin: auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  position: relative;
  top: 55px;
}

.icons {
  width: 30px;
  margin: 0 10px;
  transition: 1s;
}

.icons img {
  display: block;
  width: 100%;
  border-radius: 5px;
}

.icons:hover {
  transform: scale(1.5);
  z-index: 2;
}

.bottombarcopyright {
  color: grey;
  font-size: 10px;
  position: absolute;
  bottom: 10px; /* This will position the copyright text 10px from the bottom of the .bottombar element */
  left: 10px; /* This will position the copyright text 10px from the left of the .bottombar element */
}

  /*  Created, Managed, and Owned by Gabrielius Gintalas */