html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding-top: 10px;
}

.container {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: white;
  z-index: 1;
}

.logo {
  margin-right: 10px;
  padding-left: 20px; /* Add some left padding to move the logo away from the left */
}

.nav-links {
  display: flex;
  list-style-type: none;
  padding-right: 20px; /* Add some right padding to move the Blog link away from the right */
}

.nav-links li {
  margin-right: 10px;
}

.nav-links a {
  text-decoration: none;
  color: #666;
}

h1 {
  margin-bottom: 20px;
  margin-top: 10px;
}

.bot {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  line-height: 2.0;
}

.bot-image {
  width: 70px;
  margin-right: 10px;
  align-self: center;
}

.bot-info {
  text-align: left;
}

.bot-info h2 {
  margin: 0;
}

.bot-info p {
  margin: 0;
  font-style: italic;
  color: #666;
}

footer {
  margin-top: 5px;
  padding: 10px 0;
  font-size: 14px;
  color: #666;
  text-align: center;
  align-items: center;
  margin: auto;
}

@media only screen and (max-width: 600px) {
  h1 {
    font-size: 24px;
  }
  
  .bot-image {
    width: 50px;
    margin-right: 5px;
  }
  
  .bot-info h2 {
    font-size: 18px;
  }
  
  .bot-info p {
    font-size: 12px;
  }
  
  footer {
    padding: 10px 0;
  }
}
