@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@200&display=swap');

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    /* overflow: hidden; */
}

body {
    font-family: 'Roboto Mono', monospace;
    background-color: white;
    color: black;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -9999;
}

.container {
    text-align: center;
    z-index: 1;
}

h1 {
    margin-bottom: 20px;
}

h2 {
    margin: 10px 0;
    font-weight: 200;
}

a {
    text-decoration: none;
    color: black;
}

a:hover {
    color: gray;
}

footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px;
    z-index: 1;
    text-align: center; /* Center all text content */
}

.footer-content {
    display: inline-block; /* Allow the content to be centered */
}

.social-icons {
    display: flex;
    justify-content: center; /* Center the icons horizontally */
    align-items: center; /* Center the icons vertically */
    gap: 20px;
    margin-bottom: 10px;
}

.social-icons a {
    color: black;
    font-size: 24px;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
}

.custom-icon {
    width: 24px;
    height: 24px;
    transition: opacity 0.3s ease;
}

.social-icons a:hover {
    color: gray;
}

.social-icons a:hover .custom-icon {
    opacity: 0.7;
}

.copyright {
    margin: 0;
    font-size: 14px;
}