body, html {
    margin: 0;
    padding: 0;
    font-family: "Open Sans", sans-serif;
    height: 100%;
    background: linear-gradient(to bottom, #f7f7f7, #eaeaea); /* Updated this line */
}

.container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    background-color: #fff;
    border-radius: 5px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

h1 {
    color: #6e6e6e;
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 500;
    text-transform: uppercase;
}

p {
    color: #7f8c8d;
    font-size: 16px;
}
