html,
body {
    background-color: #010B13;
    margin: 0;
    padding: 0;
}

main {
    display: grid;
    grid-template-columns: 1fr; 
    grid-template-rows: 1fr;
    place-items: center;
    height: 100vh;
    width: 100vw;

    .logo {
        height: auto;
        width: 80vw;
        max-height: 80vh;
    }
}