body {
    font-family: Arial, sans-serif;
    text-align: center;
    margin: 0;
    padding: 0;
    background-color: #e0f7fa; /* Light icy blue */
    color: #333;
    overflow: hidden; /* Prevents horizontal scrolling */
    position: relative;
}

.container {
    width: 80%;
    margin: auto;
    padding: 20px;
}

h1 {
    color: #0c4b6b; /* Dark winter blue */
    margin-top: 20px;
    text-shadow: 2px 2px 5px rgba(255, 255, 255, 0.8); /* Subtle frosty effect */
}

p {
    font-size: 18px;
    color: #444;
    margin-top: 15px;
    line-height: 1.6;
}

.button {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 24px;
    font-size: 18px;
    color: white;
    background-color: #4e8f9b; /* Wintery blue */
    border: none;
    border-radius: 5px;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.3s;
}

.button:hover {
    background-color: #2a6170; /* Darker blue for hover effect */
}
