.img {
  width: 60%;
  border-radius: 50px;
}

.login-prompt {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.section-header {
  padding: 60px 0;
  text-align: center;
  background-color: #f8f9fa;
}

.section-cards {
  padding: 80px 0;
  background-color: #f0f0f0;
}

.myheader {
  background-color: red;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  position: relative;
}

.mylogo {
  font-size: 1.5rem;
  font-weight: bold;
}

.mylogo a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.mynav {
  display: flex;
  gap: 1rem;
}

.mynav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.myburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.myburger div {
  width: 25px;
  height: 3px;
  background-color: white;
  margin: 4px;
}

@media (max-width: 600px) {
  .mynav {
    display: none;
    position: absolute;
    top: 60px;
    right: 20px;
    background-color: red;
    flex-direction: column;
    width: 150px;
    padding: 1rem;
  }

  .mynav.active {
    display: flex;
  }

  .myburger {
    display: flex;
  }
}
