@font-face {
    font-family: Console;
    src: url('/assets/fonts/clacon2.woff2');
    font-weight: normal;
    font-style: normal;
}

/*-----*/

body {
    background-color: #222;
    font-family: Console;
    color: white;
    font-size: large;
    min-height: 100vh;
    padding: 0px;
    margin: 0px;
    display: flex;
    flex-direction: column;
}

.div-title {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: 100vh;
    
    .text:hover {
        color:rgb(150, 200, 150);
        transition: all 0.3s ease-in-out;
    }

    .big {
        font-size: 20vh;
    }
    .default {
        font-size: 15vh;
        margin-left: -3%;
    }
}