@tailwind base;
@tailwind components;
@tailwind utilities;

body {
    position: relative;
    overflow-x: hidden;
}

a {
    width: 100% !important;
    line-height: inherit !important;
    letter-spacing: inherit !important;
}

div,
section {
    position: relative;
    z-index: 2;
}

.blur-1 {
    position: absolute;
    top: -150px;
    right: -150px;
    width: 300px;
    height: 300px;
    background: #0C8299;
    filter: blur(150px);
    z-index: 3;
}

.blur-2 {
    position: absolute;
    top: 30%;
    left: -150px;
    width: 300px;
    height: 300px;
    background: #034A5A;
    filter: blur(200px);
    z-index: -1;
}

.color-primary {
    color: #0C8299;
}

.color-secondary {
    color: #034A5A;
}

.welcome-section {
    /* max-width: 1200px; */
    margin: auto;
    border-radius: 0 0 100% 100%;
    height: 250px;
    background: url(../imgs/bg-welcome.svg), #f1f1f1;
    background-repeat: repeat;
    background-position: center;
    box-shadow: 10px 20px 80px rgba(7, 65, 154, 0.25), inset 0 -25px 63px #0000002b;
}

.img-welcome {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;

    & .test {
        position: absolute;
        top: 20px;
        left: 50%;
        transform: translate(-50%, 0%);
        width: 1500px;

        & img {
            animation: AuxRotating 40s linear infinite;

        }
    }

}

@keyframes AuxRotating {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}