* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #ffffff;
    background: radial-gradient(circle, rgba(255, 255, 255, 1) 41%, rgba(232, 232, 232, 1) 100%);
    
    height: 100vh;
    display: flex;
    flex-direction: column; /* Allows footer to sit at bottom */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
}

.container {
    flex: 1; /* Takes up all available space to push footer down */
    display: flex;
    flex-direction: column;
    justify-content: center; /* Centers logo/text vertically in the middle */
    align-items: center;
    text-align: center;
    padding: 20px;
}

/* Any images in the container will respect their original size or stay within bounds */
.container img {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}

h1 {
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: -1px;
}

footer {
    padding: 20px;
    text-align: center;
    font-size: 0.9rem;
    color: #777;
}