* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

/* NAVBAR Section */
.my-nav {
  background: linear-gradient(
    to right,
    #191970,
    #6495ED
  ) !important; /* This is just temporary */
  box-shadow: 1px 1px 10px 1px black;

  img {
    height: 100px;
    margin-left: 5px;
  }

  a {
    font-size: 1.8rem;
    color: white;
  }

  a:hover {
    text-decoration: underline;
  }
}

.left-side {
  display: flex;
  border: solid 1px purple;
}
.right-side {
  display: flex;
  justify-content: flex-end;
}

/* Footer Section */
.footer {
  background: linear-gradient(
    to right,
    #191970,
    #6495ED
  ); /* This is just temporary */
  color: white;
  display: flex;
  justify-content: center;
  gap: 200px;
  padding: 10px;
  text-align: center;
  box-shadow: 1px 1px 10px 1px black;
}

.footer-img {
  height: 25px;
}

.footer a {
  color: white;
  text-decoration: none;
}
.footer ul li a:hover {
  text-decoration: underline;
}
