* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Lato", sans-serif;
    overflow-x: hidden;
}

canvas {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
}

.details {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
}

.bgc {
    background-color: red;
}

.ball-text {
    position: fixed;
    z-index: 2;
    color: white;
    font-size: 3rem;
    line-height: 60px;
    text-transform: none;
    left: 20%;
    bottom: 10%;
    opacity: 1;
    transform: translate(-20%, -40%);
}

.ball-text1 {
    position: fixed;
    z-index: 2;
    color: white;
    font-size: 3.5rem;
    line-height: 60px;
    left: 20%;
    bottom: 10%;
    text-transform: none;
    opacity: 1;
    transform: translate(-20%, -40%);
}

@media screen and (max-width: 1024px) {
    .ball-text {
        font-size: 2rem;
        bottom: 10%;
        line-height: 40px;
        text-transform: none;
    }
    .ball-text1 {
        font-size: 2rem;
        bottom: 10%;
        line-height: 40px;
    }
    h1 {
        font-size: 2rem;
    }
}