*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Montserrat',sans-serif;
    background:#000000;
    min-height:100vh;

    display:flex;
    justify-content:center;
    align-items:center;
}

.container{
    text-align:center;
    padding:40px;
}

.logo{
    width:140px;
    max-width:40vw;
    margin-bottom:30px;

    animation: flutuar 3s ease-in-out infinite;
}

h1{
    font-size:3rem;
    color:#c9c9c9;
    margin-bottom:15px;
    font-weight:800;
}

p{
    color:#666;
    font-size:1.2rem;
}

@keyframes flutuar{
    0%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-8px);
    }
    100%{
        transform:translateY(0);
    }
}