.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background-color: #f8f8f8;
    color: #333;
}

.container h1 {
    font-size: 2.5em;
    margin-bottom: 1rem;
}

.container p {
    font-size: 1.2em;
    text-align: center;
    max-width: 400px;
}

.home-link {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1.2em;
    text-decoration: none;
    color: #fff;
    background-color: #007BFF;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.home-link:hover {
    background-color: #0056b3;
}