@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&family=Raleway:wght@400;700&display=swap');

html, body {
    margin: 0;
    padding: 0;
    overflow: hidden;
}

#canvas-container {
    position: relative;
    width: 100vw;
    height: 100vh;
    background-color: rgb(20, 20, 20);
    display: flex;
    justify-content: right;
    align-items: center;
}

@media screen and (max-width: 600px) {
    #canvas-container {
        flex-direction: column-reverse;
        justify-content: top;
        align-items: center;
    }
}

.content-container{
    display: none;
    width: 100%;
    height: 60%;
    background-color: rgba(30, 30, 30, 0.95);
    color: white;
    padding: 20px;
    border-radius: 10px;
    font-family: 'Raleway', sans-serif;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}