* {
    box-sizing: border-box;
}
body {
    width: 100%;
    min-height: 100vh;
    margin: 0px;
    display: flex;
    flex-direction: column;
    font-family: Sans-serif;
    background: #e9e0c8;
}
hr {
    width: 95%;
}


.nav {
    height: 70px;
    width: 100%;
    background: #e9e0c8;
    position: relative;
    border-radius: 0px 0px 15px 15px;
    box-shadow: 0px 10px 10px #c6beaa;
    z-index: 10;
}
.nav .nav-header {
    display: inline;
}
.nav .nav-header .nav-title {
    display: inline-block;
    padding: 1px 50px;
}
.nav .nav-header .nav-title img {
    height: 65px;
    width: auto;
}
.nav .nav-btn {
    display: none;
}
.nav .nav-links {
    display: inline;
    float: right;
    font-size: 17px;
    padding: 7.5px 50px;
}
.nav .nav-links a {
    display: inline-block;
    text-decoration: none;
    color: #000;
    padding: 1rem;
}
.nav .nav-links a:hover {
    background-color: #e9e0c8;
    border-radius: 15px;
    box-shadow: inset 5px 5px 8px #c6beaa,
                inset -5px -5px 8px #ffffe6;
}
.nav #nav-check {
    display: none;
}
@media (max-width: 964px) {
    .nav .nav-btn {
        display: inline-block;
        position: absolute;
        right: 0px;
        top: 0px;
    }
    .nav .nav-btn label {
        display: inline-block;
        width: 50px;
        height: 50px;
        padding: 27.5px 50px;
    }
    .nav .nav-btn label:hover, .nav #nav-check:checked ~ .nav-btn label {
        background-color: #e9e0c8;
    }
    .nav .nav-btn label span {
        display: block;
        width: 30px;
        height: 10px;
        border-top: 3px solid #000; 
        margin: -2px;
    }
    .nav .nav-links {
        position: absolute;
        display: block;
        width: 100%;
        background-color: #e9e0c8;
        height: 0px;
        transition: all 0.3s ease-in;
        overflow-y: hidden;
        top: 56px;
        border-radius: 0px 0px 15px 15px;
        left: 0px; 
    }
    .nav .nav-links a {
        display: block;
        width: 100%; 
    }
    .nav #nav-check:not(:checked) ~ .nav-links {
        height: 0px;
    }
    .nav #nav-check:checked ~ .nav-links {
        height: calc(100vh - 50px);
        overflow-y: auto; 
    }
    .nav .nav-header .nav-title {
        padding: 1px 20px;
    }
}


.container {
    display: flex;
    justify-content: center;
    align-items: center; 
}
.container .text {
    margin-top: 20px;
    width: 90%;
    max-width: 1235px;
    margin-bottom: 40px;
}


footer {
    border-radius: 15px 15px 0px 0px;
    background-color: #121315;
    width: 100%;
    padding: 7.5px 50px;
    margin-top: auto;
}
footer .footer-copyright {
    float: left;
}
footer .footer-copyright p {
    font-size: 15px;
    color: #757575;
}
footer .footer-copyright a {
    color: #757575;
    text-decoration: none;
}
footer .footer-copyright a:hover {
    text-decoration: underline;
}
footer .footer-legal {
    margin-top: 15px;
    float: right;
}
footer .footer-legal a {
    padding: 0px 5px;
    font-size: 15px;
    color: #757575;
    text-decoration: none;
}
footer a:hover {
    text-decoration: underline;
}
@media (max-width: 545px) {
    footer .footer-copyright {
        float: none;
        display: flex;
        text-align: center;
        justify-content: center;
    }
    footer .footer-legal {
        margin-top: -7.5px;
        margin-bottom: 7.5px;
        float: none;
        display: flex;
        text-align: center;
        justify-content: center;
    }
}