@property --rotate {
    syntax: "<angle>";
    initial-value: 132deg;
    inherits: false;
}

:root {
    --card-height: 33vh;
    --card-width: 33vh;
}

html {
    position: relative;
    min-height: 100%;
    background: fixed;
}

@medi @media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}



img#working, img#workTeam {
    width: 25%;
    position: relative;
}

img#workTeam {
    left: 44%;
    top: 235px;
}

div#large-header {
    position: fixed;
}


.card {
    background: rgb(255 255 255);
    width: var(--card-width);
    height: var(--card-height);
    padding: 3px;
    position: relative;
    left: 39%;
    top: 275px;
    border-radius: 6px;
    justify-content: center;
    align-items: center;
    text-align: center;
    display: flex;
    font-size: 1.5em;
    color: rgba(88, 199, 250, 0);
    cursor: pointer;
    font-family: cursive;
}
    .card:hover {
        color: rgb(88 199 250 / 100%);
        transition: color 1s;
    }

        .card:hover:before, .card:hover:after {
            animation: none;
            opacity: 0;
        }


    .card::before {
        content: "";
        width: 104%;
        height: 102%;
        border-radius: 8px;
        background-image: linear-gradient( var(--rotate), #00668c, #009d95 43%, #0094c4);
        position: absolute;
        z-index: -1;
        top: -1%;
        left: -2%;
        animation: spin 2.5s linear infinite;
    }

    .card::after {
        position: absolute;
        content: "";
        top: calc(var(--card-height) / 6);
        left: 0;
        right: 0;
        z-index: -1;
        height: 100%;
        width: 100%;
        margin: 0 auto;
        transform: scale(0.8);
        filter: blur(calc(var(--card-height) / 6));
        background-image: linear-gradient( var(--rotate), #00668c, #009d95 43%, #0094c4);
        opacity: 1;
        transition: opacity .5s;
        animation: spin 2.5s linear infinite;
    }

@keyframes spin {
    0% {
        --rotate: 0deg;
    }

    100% {
        --rotate: 360deg;
    }
}

#microsoftLogo {
    width: 80%;
}



img#dfd {
    position: absolute;
    top: 15%;
    left: 48%;
    transform: translate(-50%, -50%);
    max-width: 100%;
    max-height: 100%;
    display: block;
    width: 40%;
}

#LogoAzul {
    width: 20%;
    position: absolute;
    top: 84%;
    left: 38%;
}

@media (max-width: 900px) {
    .card {
        width: 23vh;
        height: 23vh;
        left: 34%;
        top: 430px;
    }
    #LogoAzul {
        width: 30%;
        left: 35%;
    }


    img#dfd {
        width: 80%;
    }

}

@media (max-width: 600px) {
    .card {
        width: 20vh;
        height: 20vh;
        left: 34%;
        top: 275px;
    }

    img#dfd {
    
        width: 80%;
    }
    #LogoAzul {
        width: 30%;
     
        left: 35%;
    }


}


