.title {
    margin: 5px;
    animation: titleRotation 5s ease-in-out infinite;
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 375px;
    height: 300px;
    position:relative;
    z-index: 2;
}

.pronunciation {
    margin: -50px;
    animation: pronunRotation 5s ease-in-out infinite;
    display: block;
    height: 55px;
    width: 115px;
    margin-left: auto;
    margin-right: auto;
    position:relative;
    z-index: 1;
}

.minhaCat {
    position: relative;
    z-index: 0;
    margin: -110px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.quote {
    font-family: 'MPop';
    font-size: 20px;
    text-align: center;
    margin: 50px;
    animation: quoteRotation 10s ease-in-out infinite;
    
    background-image: linear-gradient(rgb(138, 138, 138), rgb(0, 0, 0));
    color: transparent;
    background-clip: text;
}

a {
    font-family: 'MPop';
    font-size: 20px;
}

p {
    position:relative;
    z-index: 2;
    margin-top: -40px;
    text-align: center;
    transition: scale 0.5s;
}

p:hover{
    scale:1.2;
}

@keyframes titleRotation{
    0%{
        transform: rotate(-2deg);
    }

    50%{
        transform: rotate(2deg);
    }

    100%{
        transform: rotate(-2deg);
    }

    
}

@keyframes pronunRotation{
    0%{
        transform: rotate(2deg);
    }

    50%{
        transform: rotate(-2deg);
    }

    100%{
        transform: rotate(2deg)
    }
}

@keyframes quoteRotation{
    0%{
        transform: rotate(4deg);
    }

    50%{
        transform: rotate(-4deg);
    }

    100%{
        transform: rotate(4deg)
    }
}

/* ADDED FONTS */
@font-face {
    font-family: 'MPop';
    src: url("fonts/MochiyPopOne-Regular.ttf");
}