body {
  background: url("background-image2.jpg") center/cover no-repeat;
  font-family: "Arial", sans-serif;
  margin: 0;
  padding: 0;
}

header {
  color: #fdfbfb;
  text-align: left;
  padding: 250px;
  position: center;
  font-style: italic;
  font-size: medium;
  animation-duration: 4s;
  animation-name: slidein;
}
@keyframes slidein {
  from {
    margin-left: 100%;
  }
  to {
    margin-left: 0%;
  }
}

.logo {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  flex-direction: column;
}

.logo img {
  height: 120px; /* Adjust the height as needed */
  display: flex;
  flex-direction: column;
  background: rgba(0, 0, 0, 0.685); /* Add an overlay for better readability */
  padding: 1px;
}
.logo1 {
  position: absolute;
  top: 5px;
  right: 10px;
}

.logo1 img {
  height: 120px; /* Adjust the height as needed */
}

.overlay {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(0, 0, 0, 0.8); /* Add an overlay for better readability */
  padding: 10px;
  font-size: 20px;
  font-family: "Times New Roman", Times, serif;
}

nav {
  background-color: #ffffff;
  position: relative;
}

nav ul {
  float: right;
  list-style-type: none;
  margin-top: 120px;
  margin-right: 5px;
  padding: 0;
  font-size: 25px;
  font-weight: bolder;
  animation-duration: 4s;
  animation-name: slidein;
}
@keyframes slidein {
  from {
    margin-right: 100%;
  }
  to {
    margin-left: 0%;
  }
}
nav ul li {
  display: inline-block;
  line-height: 80px;
  margin: 0 5px;
}
nav a {
  display: block;
  font-size: 18 px;
  text-transform: uppercase;
  color: #eee600;
  text-decoration: double;
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
}
.content-section {
  text-align: left;
  font-size: 25px;
  position: relative;
}

nav a:hover {
  background-color: #ffffff;
  transition: 5s;
}

footer {
  background-color: #34495e;
  color: #fff;
  text-align: center;
  padding: 10px;
  position: relative;
  bottom: 0;
  width: 100%;
}

@media screen and (max-width: 600px) {
  .logo {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    flex-direction: column;
  }

  .logo img {
    height: 80px; /* Adjust the height as needed */
    display: flex;
    flex-direction: column;
    background: rgba(
      0,
      0,
      0,
      0.685
    ); /* Add an overlay for better readability */
    padding: 1px;
  }
  .overlay {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(0, 0, 0, 0.8); /* Add an overlay for better readability */
    padding: 120px;
    font-size: 12px;
  }
  nav a {
    display: block;
    font-size: 18px;
    font-weight: bolder;
    text-transform: uppercase;
    color: #eee600;
    text-decoration: double;
    font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  }
  nav ul {
    float: right;
    list-style-type: none;
    margin-top: 150px;
    margin-right: 0px;
    padding: 0;
    font-size: 18px;
    width: 50%;
    animation-duration: 4s;
    animation-name: slidein;
  }
}
