body {
    overflow-x: hidden;
    padding: 0;
    margin: 0;

    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;

    color: white;
    background-color: rgb(28, 28, 28);
}

p {
    margin-top: 10px;
    margin-bottom: 10px;
}

.first-page-welcome-container {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(/static/black-marble-bg.jpeg);

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    width: 100%;
    height: 100vh;

    position: fixed;
    top: 0;
    left: 0;
}

.first-page-content-container {
    position: absolute;
    width: max-content;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);
}

#name {
    text-align: center;
    color: white;
    font-size: clamp(2.5rem, 7vw, 6rem);
    font-weight: bold;
    pointer-events: none;
}

a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: underline solid;
}

#mail {
    font-size: clamp(1rem, 2vw, 1.5rem);

    display: flex;
    width: max-content;
    margin-left: auto;
    margin-right: auto;

    text-decoration: none !important;
}

.overlay {
    position: absolute;
    top: 100vh;
    background-color: rgb(28, 28, 28);
    width: 100%;
    min-height: 100vh;
    box-sizing: border-box;

    display: flex;
    flex-direction: column;
}

.content {
    max-width: max-content;
    margin: auto auto;

    padding: 10px 25px;
    box-sizing: border-box;
}

.content ul li:not(:first-child) {
    margin-top: 5px;
}

.foot {
    margin-top: auto;
    width: 100%;
    box-sizing: border-box;
    background-color: rgb(15, 15, 15);
    padding: 5px 10px;
}

.foot ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    max-width: max-content;
    margin-right: auto;
    margin-left: auto;
    padding: 0;
}

.foot ul li {
    text-decoration: none;
    list-style-type: none;
}