* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #001f3d; /* тёмно-синий фон */
    font-family: Arial, sans-serif;
    color: white;
    overflow: hidden;
    height: 100vh;
}

.content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
}

h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

p {
    font-size: 1.5rem;
}

canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}