body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #864343;
    font-size: 16px;
    display: grid;
    grid-template-rows: auto 1fr auto;
    height: 100dvh;
}

header {
    background-color: #412121;
    color: #ffb6b6;
    padding: 20px 0;
    text-align: center;
}

#content {
    color: #ffb6b6;
    text-align: center;
    overflow-y: auto;
    padding: 20px;
    flex: 1;
}

#mail {
    color: #ffcbcb;
}

#mail:hover {
    color: #ffb6b6;
}

footer {
    text-align: center;
    padding: 10px 0;
    background-color: #412121;
    color: #ffb6b6;
}

.footerLink {
    color: #898989;
    margin-left: 1%;
    margin-right: 1%;
}

/* Customize the scrollbar */
::-webkit-scrollbar {
    width: 5px; /* Width of the scrollbar */
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0); /* Background of the scrollbar track */
}

::-webkit-scrollbar-thumb {
    background: #502929; /* Color of the scrollbar thumb */
    border-radius: 6px; /* Rounded corners for the scrollbar thumb */
}

::-webkit-scrollbar-thumb:hover {
    background: #2d1717; /* Color of the scrollbar thumb when hovered */
}