/* Animations */
@keyframes moveInFromLeft { 
    from{ 
        transform: translateX(-1200px); 
        opacity: 0;
    } 
    to{ 
        transform: translateX(0); 
        opacity: 1;
    }
}

.moveInFromLeft{
    animation-name: moveInFromLeft;
    animation-duration: 1s;
    animation-timing-function: ease-in-out;
}

@keyframes rotateLogo{
    from{transform: rotate(0deg);}
    to{transform: rotate(360deg);}
}

/*-------------------------------------------------------------------------------------------------------------------------*/
/* Transitions and other stuff */

/*Logo*/
.box {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    z-index: 1;
    border-radius: 50%;
    transform-origin: center;
    overflow: hidden;
}

.box::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    background: linear-gradient(white, black, white);
    border-radius: 50%;
    transform-origin: center;
    z-index: -1;

    animation: rotateLogo 5s linear infinite;
}

.box img {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    object-fit: fill;
}
/*Logo*/

/*Items Main*/
.text-color{
    color: black;
}

.circle{
    width: 120px;
    height: 120px;
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.circle:hover{
    scale: 1.2;
    transition: ease-in-out;
    transition-duration: 0.3s;
}

.circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 25px;
}

a{
    text-decoration: none;
}