@font-face {
    font-family: feelingLovely;
    src: url(Feeling\ Lovely.ttf);
}

html {
    height: 100%;
}

body {
    font-family: feelingLovely;
    margin: 0;
    padding: 0;
    background-color: #3c1d59;
}

header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 5%;
    margin-bottom: 5%;
}

header img {
    width: 200px;
}

.container {
    display: flex;
    justify-content: center;
    height: 100vh;
}

.container img {
    max-width: 850px;
}

.fade {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.fade.show {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.arrow {
    color: white;
    font-size: xx-large;
}

#arrowContainer {
    position: absolute;
    width: 100%;
}

@media screen and (max-width: 768px) {
    header img {
        width: 100px;
    }

    .container {
        flex-direction: column-reverse;
    }

    .container img {
        width: 100%;
    }
}