body {
    position: relative;
    margin: 0;
    font-family: "JetBrainsMonoNerd", monospace;
    background-color: #695e3fe8;
    overflow: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #938159d0;
    background-size: 16px 16px;
    background-image:
        radial-gradient(circle, #695e3f 1px, transparent 1px);
    z-index: -2;
}

header {
    text-align: center;
    position: relative;
    z-index: 1;
}

.site-title {
    color: rgba(0, 0, 0, 0.435);
    font-size: 28px;
    letter-spacing: 100px;
    text-align: center;
    user-select: none;
    margin-top: -120px;
}   

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 35px 0 0 0;
}

nav a {
    text-decoration: none;
    color: rgba(0, 0, 0, 0.435);
    font-weight: bold;
    font-size: 20px;
    transition: color 0.3s ease;
    user-select: none;
}

nav a:hover {
    color: #352c23;
}

footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    font-style: italic;
    margin-left: -10px;
    margin-bottom: 40px;
    z-index: 1;
    color: rgb(86, 68, 46);
    user-select:none;
}

/* LANDING PAGE */
.quote {
    text-align: center;
    font-style: italic;
    font-size: x-large  ;
    margin-top: 8%;
    color: rgb(58, 42, 23);
    user-select: none;
}

dt {
    font-weight:bold;
    font-style: normal;
}

em {
    font-weight: 500;
}

dd{
    margin-top: 20px;
}

a {
    text-decoration: none;
    color: rgba(58, 42, 23);
}

.enter-button {
    text-align: center;
    text-decoration: none;
    letter-spacing: 30px;
    font-size: xxx-large;
    font-weight: bolder;
    margin-top: 70px;
    color: rgba(58, 42, 23);
    user-select: none;
}

.enter-button:hover {
    color: rgb(86, 68, 46);
}
/* END */

/* NOT FOUND PAGE*/
.not-found {
    text-align: center;
    text-decoration: none;
    letter-spacing: 180px;
    font-size: 140px;
    color: rgba(0, 0, 0, 0.062);
    margin-top: 200px;
    margin-left: 150px;
    transform: scaleY(3.5);
    user-select: none;
}
/* END*/

/* HOME PAGE */
.profile-text{
    border: #352c23 6px;
    border-radius: 2px;
    border-style: solid;
    margin-top: 80px;
    margin-left: 140px;
    padding-top: 20px;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 20px;
    width: 300px;
    height: 450px;
}
/* END */