body {
    margin: 0;
    padding: 0;
    height: 100vh;
    width: 100vw;
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: black;
    color: white;
    height: 100%;
    width: 100%;
}

#messages {
    width: 600px;
    height: 15%;
    overflow-y: hidden;
    overflow-x: hidden;
}

.message {
    font-size: 2em;
    margin-top: 20px;
    text-align: center;
    opacity: 1;
}

.fade {
    opacity: 0;
    transition: opacity 4s ease-in-out;
}

img {
    max-height: 70%;
    max-width: 100%;
}

input {
    height: 2.5em;
    width: 625px;
    text-align: center;
    background: black;
    border: none;
    color: white;
    font-size: 32px;
    border-bottom: 2px solid white;
}