html {
    background-color: #D6D2CE;
    font-family: monospace;
    font-size: 18px;
}
body {
    margin: 0;
    padding: 0;
}


a {
    text-decoration: none;
    color: #000;
}
span {
    display: inline-block;
}
h1 {
    font-size: 45px;
    font-weight: normal;
    position: relative;
    text-align: center;
    padding-top: 40px;
}
h1::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background-image: url('/assets/img/h1.webp');
    background-size: contain;
    background-repeat: no-repeat;
}
h2 {
    font-size: 36px;
    font-weight: normal;
    position: relative;
    text-align: center;
    padding-top: 40px;
}
h2::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 35px;
    height: 35px;
    background-image: url('/assets/img/h2.webp');
    background-size: contain;
    background-repeat: no-repeat;
}
.btn {
    background-color: #65574e;
    color: #fff;
    display: inline-block;
    padding: 18px 32px;
    border-radius: 9999px;
}
.btn:hover {
    background-color: #1A1514;
    color: #D6D2CE;
}


header {
    background-color: #958d86;
    padding: 20px;
    font-size: 20px;
    position: sticky;
    top: 0;
    z-index: 99999;
}
.header-wrapper {
    margin: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.site-name {
    font-size: 24px;
    font-family: Century;
}
.site-link, .link{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
}
.site-link {
    gap: 40px;
}
.link a:hover {
    color: #E1DFDB;
}


.content {
    text-align: center;
}
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    cursor: pointer;
    margin-left: auto;
}
.hamburger span {
    display: block;
    width: 100%;
    height: 4px;
    background: white;
    border-radius: 2px;
    transition: all 0.6s ease;
}
.menu-toggle {
    display: none;
}
.menu-toggle:checked + .hamburger span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}
.menu-toggle:checked + .hamburger span:nth-child(2) {
    opacity: 0;
}
.menu-toggle:checked + .hamburger span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}
@media screen and (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    .header-wrapper {
        flex-wrap: wrap;
        margin: 0 20px;
    }
    .site-link {
        width: 100%;
        flex-direction: column;
        max-height: 0;
        overflow: hidden;
        transition: max-height 1.2s cubic-bezier(0.5, 0, 0.5, 1);
        gap: 20px
    }
    .link {
        flex-direction: column;
        gap: 10px;
        width: 100%;
        padding: 10px 0;
    }
    .link a {
        margin: 10px;
    }
    .menu-toggle:checked ~ .site-link {
        max-height: 500px;
    }


    html {
        font-size: 16px;
    }
    span {
        line-height: 1.75;
    }
    h1 {
        font-size: 38px;
    }
    h2 {
        font-size: 28px;
    }
    .btn-wrapper {
        margin: 10px 0;
        padding: 20px 60px;
    }
    .footer-wrapper {
        margin: 0!important;
        font-size: 14px;
    }
}


@media screen and (max-width: 580px) {
    html {
        font-size: 14px;
    }
    h1 {
        font-size: 28px;
    }
    h2 {
        font-size: 20px;
    }
    h2::before {
        width: 30px;
        height: 30px;
    }
    .footer-wrapper {
        flex-direction: column;
        text-align: center;
    }
}


footer {
    background-color: #555;
    color: #fff;
    padding: 20px;
    font-size: 16px;
}
.footer-wrapper {
    margin: 40px 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-logo a {
    color: #fff;
}