﻿/* Add your custom styles here */
body {
    font-family: 'Roboto', sans-serif;
    background: #f2f2f2;
}

.main-w3layouts.wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.noregcopy-agile {
    margin: 30px 0;
}

.noreg-bubbles {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.noreg-bubbles li {
    position: absolute;
    list-style: none;
    display: block;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.15);
    bottom: -160px;
    animation: square 20s infinite;
}

.noreg-bubbles li:nth-child(1) {
    left: 10%;
}

.noreg-bubbles li:nth-child(2) {
    left: 20%;
    width: 80px;
    height: 80px;
    animation-duration: 17s;
}

.noreg-bubbles li:nth-child(3) {
    left: 25%;
    animation-duration: 15s;
}

.noreg-bubbles li:nth-child(4) {
    left: 40%;
    width: 60px;
    height: 60px;
    animation-duration: 22s;
}

.noreg-bubbles li:nth-child(5) {
    left: 70%;
}

.noreg-bubbles li:nth-child(6) {
    left: 80%;
    width: 120px;
    height: 120px;
    animation-duration: 40s;
}

.noreg-bubbles li:nth-child(7) {
    left: 32%;
    width: 160px;
    height: 160px;
    animation-duration: 40s;
}

.noreg-bubbles li:nth-child(8) {
    left: 55%;
    width: 20px;
    height: 20px;
    animation-duration: 40s;
    animation-delay: 3s;
}

.noreg-bubbles li:nth-child(9) {
    left: 25%;
    width: 10px;
    height: 10px;
    animation-duration: 40s;
    animation-delay: 5s;
}

.noreg-bubbles li:nth-child(10) {
    left: 90%;
    width: 50px;
    height: 50px;
    animation-duration: 40s;
    animation-delay: 4s;
}

@keyframes square {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-700px) rotate(600deg);
    }
}