*,
*::before,
*::after {
  box-sizing: border-box;
}
#logo {
  width: 300px;
  height: 200px;
  object-fit: contain;
  background: linear-gradient(orange, white, green);
  border-radius: 10px;
}
@keyframes move_div {
  from {
    left: 0;
  }
  to {
    left: 80%;
  }
}
.box {
  width: 30px;
  height: 30px;
  position: relative;
  bottom: 50px;
  animation-name: move_div;
  animation-duration: 4s;
  animation-iteration-count: infinite;
}
.title {
  /*background-color: darkslategrey; */
  background: linear-gradient(orange, white, green);
  border-radius: 10px;
  height: 200px;
  text-align: center;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 70px;
  font-weight: bold;
  color: blue;
  padding: 45px;
}
.naming {
  position: relative;
  bottom: 22px;
}
.sub_title {
  color: white;
  font-size: 25px;
  font-style: italic;
  position: relative;
  left: 100px;
  bottom: 65px;
}

.menu {
  text-align: center;
  font-weight: bold;
  font-size: 18px;
  background-color: aqua;
  padding: 8px 0px;
  border-radius: 5px;
}
.menu a {
  text-decoration: none;
  text-shadow: 3px 3px 5px rgba(0 0 0 0.2);
  color: darkblue;
  display: block;
}
.menu:hover {
  background-color: orange;
  text-shadow: 3px 3px 5px rgba(0 0 0 0.2);
  transform: scale(1.1);
  box-shadow: 2px 2px 2px #000;
  z-index: 2;
}

#banner {
  background-image: url("../img/largest-vaccine-banner.jpg");
  height: 280px;
  margin: 10px 10px;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: 0px 0px 5px teal;
  object-fit: cover;
}

#general_info ul {
  text-align: justify;
  list-style: square;
  font-size: 15px;
  font-weight: bold;
  font-family: "Courier New", Courier, monospace;
  position: relative;
  bottom: 10px;
}
#info h2 {
  text-align: center;
  text-transform: uppercase;
  padding: 5px 0px;
  background-color: rgb(10, 112, 112);
  color: white;
  margin: 10px 10px;
  border-radius: 5px;
}
#info h3 {
  text-align: center;
  text-transform: uppercase;
  padding: 5px 0px;
  border-bottom: 2px solid black;
}
#info p {
  text-align: center;
}
footer {
  background-color: rgb(4, 49, 49);
  text-align: center;
  text-transform: capitalize;
  height: 110px;
  padding-top: 5px;
  font-size: 20px;
  margin-top: 10px;
  border-radius: 10px;
}
.owner {
  text-align: center;
  position: relative;
  top: -12px;
  color: white;
}

footer P {
  text-align: left;
  position: relative;
  top: -33px;
  margin-left: 5px;
  color: white;
}
.logo img {
  width: 40px;
  height: 40px;
  position: relative;
  top: -23px;
}
.follow_us {
  height: auto;
  width: fit-content;
  position: relative;
  top: -35px;
  color: white;
}
