@charset "utf-8";
* {
    box-sizing: border-box;
    margin: 0;
}

body {
    color: #041408;
    font-family: sans-serif;
    font-size: 1rem;
    line-height: 1;
}

a {
    color: inherit;
    text-decoration: none;
}

#header {
    background-color: #06280d;
    color: #65c9cbc0;
    padding: 50px;
    width: 100%;
}

#header .container {
    align-items: baseline;
    display: flex;
    justify-content: space-between;
}

#header .logo {
    font-size: 1.5rem;
    margin: 0 auto;
    max-width: 95%; 
    width: fit-content; 
}
#content-box {
    background-color: #fff;
    font-size: 1rem;
    line-height: 25px;
    text-align: center;
    border: 1px solid #ccc;
    padding: 10px;
    border-radius: 10px; 
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); 
    margin: 0;
    overflow-x: hidden;
    word-wrap: break-word;
}

#footer {
    background-color: #fff;
    font-size: 0.8rem;
    line-height: 25px;
    text-align: center;
    border: 2px solid #ffffff;
    padding: 10px;
    border-radius: 10px; 
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); 
}

#footer a {
    color: #000000;
    font-weight: 1000;
}

::-webkit-scrollbar {
    width: 6px;
    height: 6px;
    background-color: #21ad2100;
}

::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background-color: #16440498;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #064135ee;
}