body {
    background-image: url(images/5012_multi.png);
    background-size: cover;
    margin: 0;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100%;
}

.container img {
    width: 200px;
    display: inline-block;
    padding: 0;
    margin: 0;
}

.container button {
    border: none;
    border-radius: 36px;
    font-size: 14px;
    padding: 4px 10px;
    font-weight: bold;
    background-color: #0097B2;
    color: black;

    transition: all .2s;
}

.container button:hover {
    color: whitesmoke;
    box-shadow: 1px 1px 1px whitesmoke;
}

.container h1 {
    font-family: sans-serif;
    color: whitesmoke;
    background-color: transparent;
    font-size: 27px;
    padding: 0;
    margin-bottom: 20px;
}