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

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

body {
    font-family: 'Roboto Mono', monospace;
    background-color: white;
    color: black;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-y: auto;
    /* Allow vertical scrolling */

}

a {
    color: #682e5f;
    text-decoration: none;
    font-family: 'Roboto Mono', monospace;
    font-weight: bold;

}
a:hover {
    color: white;
    background-color: black;
}

#canvas-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    /* max-height: 1900px; */
    /* height: 100vh; */
}

#top-canvas-container,
#bottom-canvas-container {
    width: 100%;
    /* height: 50%; */ /* This breaks things with heithgt */
    min-width: 300px;
    max-height: 600px; 
}

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

h1 {
    margin-bottom: 20px;
}

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



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

.text-container {
    width: 95%;
    max-width: 700px;
    margin: 0 auto;
    /* Center the text container */
    text-align: center;
    /* Center text inside the container */
}

/* Ensure all direct child elements are centered */
.text-container>* {
    display: block;
    /* Ensures each element takes the full width available */
    margin-left: auto;
    /* Centers child elements horizontally */
    margin-right: auto;
    /* Centers child elements horizontally */
    width: fit-content;
    /* Ensures elements fit their content */
    /* Optional: Add padding or margin if needed */
    padding: 0;
}

/* Specific styling for paragraphs inside text-container */
.text-container p {
    margin: 0 auto;
    /* Center paragraph text */
    padding: 0 20px;
    /* Optional: Add padding if needed */
    text-align: left;
    /* Maintain left alignment for text */
}

.text-block {
    display: inline-block;
    /* This will make it center properly */
    padding: 40px 20px;
}

.go-back {
    padding: 20px;
}

.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;
}