body {
    margin: 0;
    background-color: rgb(29, 29, 29)
}

.header-inner {
    position: fixed;

    max-width: 100%;
    width: 100%;
    height: 110px;
    margin-left: auto;
    margin-right: auto;
    background-color: rgb(39, 39, 39);

    padding-left: 40px;
    padding-right: 40px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    z-index: 10;
}

.header-logo {
    display: block;
    width: 270px;
}

.menu ul {
    display: flex;
}

.menu ul li {
    font-family: "M PLUS 1", sans-serif;
    color: #ffffff;
    margin-left: 20px;
    margin-right: 20px;

}

.main {
    background-color: #3a4047;
}


.footer {
  background-color: rgb(29, 29, 29);
  color: #fff;
  font-family: "M PLUS 1", sans-serif;
  width: 100%;
}

.footer-top {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 30px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}

.footer-social {
  display: flex;
  gap: 20px;
}

.footer-social a {
  color: #fff;
  font-size: 28px;
  transition: transform 0.2s, color 0.2s;
}

.footer-social a:hover {
  transform: scale(1.1);
}

.footer-bottom {
  text-align: center;
  padding: 15px 20px;
  font-size: 0.85rem;
  color: #aaa;
}

.border {
  border-bottom: 1px solid rgba(255,255,255,0.2);
}



@media screen and (max-width: 768px) {

    .footer-top {
        flex-direction: column;
        gap: 20px;
    }

    .header-inner {
        position: static;
        flex-direction: column;
        height: auto;
        padding: 20px;
    }

    .header-logo {
        width: 200px;
        margin-bottom: 20px;
    }

    .menu ul {
        flex-direction: column;
        align-items: center;
    }

    .menu ul li {
        margin: 10px 0;
    }
}
@media screen and (min-width: 769px) {
    .main {
        padding-top: 110px;
    }
}
