body {
    background-image: url('./media/background.jpg');
    background-size: cover;
    background-position: center;
    /* Animated font */
    font-family: 'Comic Sans MS', cursive, sans-serif;
    margin: 0;
    padding: 0;
    height: 100vh;
}

.container {
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.logo-container {
    display: flex;
    justify-content: center;
    padding-top: 20px;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1;
}

.text-container {
    display: flex;
    height: 100%;
    justify-content: center;
    align-items: center;
}

h1 {
    color: rgb(255, 255, 255);
    font-size: 42px;
    text-align: center;
}

img {
    max-width: 300px;
}