#home {
    width: 100%;
    height: 100vh;

    display: grid;
    justify-content: center;
    align-items: center;
}
#home > div {
    margin-top: -50px;
    
    display: grid;
    justify-content: center;
    align-items: center;
    grid-template-columns: auto;
    grid-row-gap: 40px;
}
#logo-home {
    width: 100%;
    height: auto;

    animation: logoHomeAnim 2s ease-out;
}
h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: white;
    text-align: center;

}