body {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    margin: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    min-height: 100vh;
    position: relative;
}

#backgroundCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: -1;
}

.content-container {
    position: relative;
    top: 0rem;
    z-index: 1;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 30rem;
    margin: 1rem;
}

.content-container h2 {
    margin: 0.5rem;
}

#name-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: 7rem;
}

#name-container img {
    border-radius: 0.5rem;
    width: 5rem;
    height: 5rem;
}

#name-container h1 {
    flex-grow: 4;
    font-size: 2.5em;
}

#footer {
    padding: 0rem 1rem;
    max-width: 55rem;
}

#footer h6 {
    margin: 0.5rem 0rem;
}