body { margin: 0; overflow: hidden; font-family: Optima, sans-serif; }
canvas { display: block; }
.overlay {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translate(-50%, -10%);
    text-align: center;
    color: white;
    z-index: 1;
}
.overlay h1 {
    font-size: clamp(2em, 6vw, 3em);
    margin: 0.2em 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.overlay p {
    font-size: clamp(1.5em, 4vw, 2em);
    margin: 0.2em 0;
}

.info-sections {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: left;
    width: 90%;
    max-width: 600px;
    color: white;
    z-index: 1;
}
.text-container {
    padding: 0 2em;
}
.info-sections h2 {
    font-size: clamp(1.2em, 3vw, 2em);
    margin: 1em 0;
    box-sizing: border-box;
    width: 100%;
    border: none;
    outline: none;
    background: none;
}
.info-sections p {
    font-size: clamp(1.2em, 3vw, 2em);
    margin: 1em 0;
    box-sizing: border-box;
    width: 100%;
    border: none;
    outline: none;
    background: none;
}
#contact {
    font-size: clamp(1.5em, 2vw, 2.5em);
    bottom: 10px;
    color: white;
    z-index: 1;
    text-align: center;
}
#contact a {
    color: #CF9FFF;
    text-decoration: none;
    font-size: clamp(1em, 1.5vw, 1.5em);
}
div #contact a {
    color: #CF9FFF;
    text-decoration: none;
    font-size: clamp(1em, 1.5vw, 1.5em);
}
#copyright {
    font-size: 1em;
    bottom: 10px;
    color: white;
    z-index: 1;
    text-align: center;
}
@media (min-width: 600px) {
    .info-sections {
        width: 80%;
    }
    .info-sections h2 {
        font-size: clamp(1em, 2vw, 1.5em); 
    }
    .info-sections p {
        font-size: clamp(.8em, 1vw, 1em);
    }
}
@media screen and (min-width: 600px) {
    .info-sections p {
        font-size: clamp(1em, 2vw, 2em);
    }
}
@media (max-width: 350px) {
    .overlay h1 {
        font-size: 1.5em;
    }
    .overlay p {
        font-size: 1em;
    }
}
@media (max-width: 350px) {
    #contact {
        font-size: 1.2em;
    }
    #contact a {
        font-size: 0.8em;
    }
}