@import url('https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.min.css');

/* Your existing code */
.centered-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: row;
    width: 100vw;
    height: 100vh;
    background-image: url('/images/bg.jpg');
}

.centered-content > div { 
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: column;
}

h1, h1 a {
    text-align:center;
    color:#fff;
    text-decoration: none;
    font-family: "Lato", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.logo {
    width:500px;
    max-width: 80%;
    filter: drop-shadow(0px 0px 30px rgba(0, 0, 0, 0.8));
}