

.no-scroll {
    overflow: hidden;
}




body, html {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    background-color: black;
    font-family: helvetica;
}

.container, .container-bar, .container-info {
    text-align: center;
    color: white;
}

.company {
    font-family: helvetica;
    color: white;
    font-size: 25px;
}

.container-info {
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.info p, .info-bar p, .container-info p {
    font-size: 1.5em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.button1 {
    color: black;
    font-family: Helvetica;
    background-color: white;
    border-radius: 10px;
    text-decoration: none;
    padding: 1em 2em;
    margin-top: 2em;
    font-size: 1em;
}

canvas {
    width: 100%;
    height: auto;
    margin-bottom: 0px;
    margin-top: 10px;
}

@media (max-width: 1024px) {
    .container-info p {
        font-size: 1.2em;
    }
}

@media (max-width: 768px) {
    .container-info p {
        font-size: 4vw;
    }
}

@media (max-width: 600px) {
    .info p, .info-bar p, .container-info p {
        font-size: 1em;
    }
}

/* High-density screen adjustments for devices like iPhones */
@media only screen and (max-device-width: 736px) {
    .container-info p {
        font-size: 3vw;
    }
}

@keyframes zoomInAndFadeOut {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(2); /* Scaled down for better visibility on smaller screens */
        opacity: 1;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

.zoom-in {
    animation: zoomInAndFadeOut 4s forwards;
}
