canvas {
    width: 100%;
}

body {
    background-color: #213567;
}

#rotate-message {
    display: none;
}

@media (max-width: 768px) and (orientation: portrait) {
    canvas {
        display: none;
    }

#rotate-message {
        position: fixed;
        display: flex;
        inset: 0;
        justify-content: center;
        align-items: center;
        text-align: center;
        font-size: 2rem;
        font-family: 'Nunito';
        background: #213567;
        color: #fff;
        z-index: 999;
    }
}

@media (max-width: 480px) and (orientation: portrait) {
    #rotate-message p {
        padding: 20px;
        font-size: 1.3rem;
    }
}