@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat';
}

body {
    background-color: black;
}

.containerAll {
    width: 100vw;
    height: 100dvh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.containerAll::-webkit-scrollbar {
    width: 0;
}

.containerAll .blur1 {
    width: 400px;
    height: 400px;
    background-color: #05DC7F;
    border-radius: 50%;
    filter: blur(400px);
    position: absolute;
    top: -100px;
    left: -100px;
    opacity: 0;
    animation: onAnimation 5s infinite;
}

.containerAll .blur2 {
    width: 600px;
    height: 600px;
    background-color: #00664E;
    border-radius: 50%;
    filter: blur(400px);
    position: absolute;
    bottom: -100px;
    right: -100px;
    opacity: 0;
    animation: onAnimation 5s infinite;
}

.containerAll .containerInfo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.containerAll .containerInfo img {
    width: 70px;
    margin-bottom: 1rem;
}

.containerAll .containerInfo h1 {
    font-size: 30px;
    font-weight: 900;
    color: white;
    line-height: 30px;
    margin-bottom: .5rem;
}

.containerAll .containerInfo h1 span {
    color: #05DC7F;
}

.containerAll .containerInfo p {
    color: white;
    font-size: 13px;
    width: 600px;
    text-align: center;
    margin-bottom: 1rem;
}

.containerAll .containerInfo a {
    text-decoration: none;
    padding: .8rem 2rem;
    background: linear-gradient(90deg, #00664E, #05DC7F);
    border-radius: 30px;
    font-weight: 800;
    font-size: 13px;
    color: white;
}

@keyframes onAnimation {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@media (height < 350px) {
    .containerAll {
        align-items: start;
        overflow-y: auto;
    }
}

@media (width < 600px) {
    .containerAll .containerInfo p {
        width: 100%;
    }

    .containerAll .containerInfo h1 {
        font-size: 20px;
        line-height: 20px;
    }
}