.footer {
    /* background-color: rgb(38, 78, 73); */
    width: 100%;
    height: 120px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.copyright {
    color: rgb(38, 78, 73);
    margin: 30px;
    font-weight: 600;
}

.middlefooter img {
    height: 100px;
}

.extranav {
    display: grid;
    margin: 30px;
    grid-gap: 5px;
}

.extranav a {
    color: black;
    font-weight: 500;
    padding: 5px;
    border-radius: 6px;
    color: rgb(38, 78, 73);
    font-size: 18px;
    font-weight: 600;
    transition-duration: 0.5s;
    transition-property: color;

}

.extranav a:hover {
    background-color: rgb(209, 209, 209);
    padding: 5px;
    border-radius: 6px;
    transition: 0.4s;
}

.scroll-top {
  color: white;
  padding: 10px 15px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 16px;
  opacity: 0.8;
  transition: opacity 0.3s, transform 0.3s;
}

.scroll-top:hover {
  opacity: 1;
  transform: translateY(-5px);
}

/* Optional: smooth scroll behavior for all anchor links */
html {
  scroll-behavior: smooth;
}

@media (max-width: 780px) {
    .footer {
        margin-top: 240px;
        height: 80px;
    }

    .copyright {
        font-size: 10px;
    }

    .middlefooter img {
        height: 0px;
    }

    .extranav a {
        font-size: 10px;
    }
}