body {
    background-color: black;

    width: 100vw;
    height: 100vh;

    margin: 0;

    display: flex;
    justify-content: center;
    align-items: center;
}

main {
    display: inline-grid;
    /* width: 60vw; */
}

main > button {
    border-radius: 0px;
    border: none;
    margin-top: 5px;
    padding: 10px;
    text-transform: uppercase;
    cursor: pointer;
    background-color: white;
    width: 100%;
    border: 5px solid white;

    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

main > button:hover {
    background-color: #df5656;
    font-weight: bold;
}

main > img {
    object-fit: cover;
    width: 100%;
    height: 480px;
    background-color: white;
}

main > #status {
    color: white;
    text-align: center;
    margin-top: 5px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

@media screen and (max-width: 600px) {
    main > img {
        height: calc(480px / 2);
    }
}