* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    font-family: Arial, sans-serif;
}

body {
    background: url('../assets/img/background.jpg') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 0;
}

.container {
    text-align: center;
    color: black;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 50px; 
    z-index: 10;
}

.logo {
    width: 100%;
  	margin-bottom: 50px;
}

.centered-text {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-content: stretch;
    font-size: 8vw;

}

@media only screen and (min-width: 768px) {
    /* For desktop: */
    .centered-text {
         flex-direction: row;
         font-size: 3vw;
    }

    .logo {
        width: 25%
    }
}

.centered-text span {
    margin: 10px;
}

.footer {
    text-decoration: none;
    margin-top: 50px;
}

.footer p {
    margin: 5px 0;
}

.footer a {
    text-decoration: none;
    color: black;
}

