@font-face {
    font-family: snesfont;
    src: url(../fonts/snes-fonts-mario-paint.otf);
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: snesfont;
}

body {
    background-color: #000000;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

main {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.logodiv {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    margin-bottom: 100px;

}

#logo1 {
    width: 110px;
    margin-right: 15px;
}

h1 {
    text-align: center;
    font-size: 3vw;
    text-transform: uppercase;
    animation-iteration-count: infinite;
    animation-duration: 1.5s;
    animation-name: breath;

}

h1 a {
    text-decoration: none;
    color: white;
}

/*Animação respiração*/
@keyframes breath {
    from {
       
    }

    to {
        height: 100px;

        font-size: 150%;
    }

    0% {
         height: 100px;
        font-size: 150%;
    }

    50% {
        height: 100px;

        font-size:100%;
    }

    100% {
         height: 100px;
        font-size: 150%;
    }

}

@keyframes minibreath {
    0% {
        height: 100px;
        font-size: 3vw;
    }

    50% {
        height: 100px;

        font-size: 4vw;
    }

    100% {
        height: 100px;
        font-size: 3vw;
    }
}

@media (max-width: 600px) {
    .logodiv {

        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: row;
        margin-bottom: 100px;
    }

    #logo1 {
        width: 80px;
        margin-right: 10px;
    }

    #logo2 {
        width: 200px;
    }

    h1 {
        text-align: center;
        font-size: 3vw;
        text-transform: uppercase;
        animation-iteration-count: infinite;
        animation-duration: 2s;
        animation-name: minibreath;
    }
}