/* Special */

@font-face{
    font-family: "SpecialLittleOnes";
    src: url("../fonts/SpecialLittleOnes.ttf");
    font-weight: normal;
    font-style: normal;
}

/* All */

*{
    box-sizing: border-box;
}

/* TAGS */

body{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: no-wrap;
    
    height: 100vh;
    width: 100%;
    margin: 0px;
    
    background-color: #000000;
}

a{
    text-decoration: none;
}

/* CLASSES */

.stellar{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: no-wrap;
    
    height: 50%;
    width: 100%;
    
    background-color: #000000;
    
    font-family: "SpecialLittleOnes";
    font-size: 20vw;
    color: White;
}

/* IDs */

#Hi{
    color: Red;
}
