html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    background-image: url('../images/bg-01.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Poppins', sans-serif;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

h1 {
    color: white;
    font-weight: 400;
}

img {
    max-height: 125px;
}


@media screen and (max-width: 600px) {
    
    img {
        max-height: 90px;
    }

    h1 {
        font-size: 20px;
        font-family: poppins, sans-serif;
    }
    
}