* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    background-color: #020c1b;
    font-family: "komet", sans-serif;
    
}
.heroBox {
    height: 98vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10%;
}
h4 {
    color: #FF7700;
    font-weight: 100;
    align-self: flex-start;
    font-size: 2vh;
}
h1 {
    color: #ccd6f6;
    font-size: 10vh;
    text-transform: uppercase;
}
footer {
    height: 2vh;
    /* background: rgb(255,119,0); */
    background: linear-gradient(90deg, rgba(255,119,0,1) 0%, rgba(128,60,0,1) 100%);
}