@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&display=swap');

body, html {
    height: 100%;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    overflow: hidden;
    color: #ffffff;
    background: linear-gradient(160deg, #7289DA, #2C2F33);
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    text-align: center;
    padding: 0 20px;
}

.title {
    font-size: 4.5em;
    font-weight: 700;
    text-shadow: 0px 4px 5px rgba(0, 0, 0, 0.2);
}

.highlight {
    color: #43b581;
}

.info {
    font-size: 1.5em;
    margin-top: 20px;
    color: #bbb;
    text-shadow: 0px 2px 3px rgba(0, 0, 0, 0.2);
}

#animationCanvas {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}


/* Mobile and smaller devices */
@media only screen and (max-width: 768px) {
    .title {
        font-size: 2.5em;
    }

    .info {
        font-size: 1.2em;
    }

    .container {
        padding: 0 10px;
    }
}

/* Larger devices (desktops, 992px and up) */
@media only screen and (min-width: 992px) {
    .title {
        font-size: 5em;
    }

    .info {
        font-size: 1.8em;
    }

    .container {
        padding: 0 40px;
    }
}
