body {
    font-family: 'Roboto', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: linear-gradient(135deg, #89ABE3, #4563DB); /* Blue gradient */
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.container {
    text-align: center;
    background: #ffffff; 
    padding: 80px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); 
    width: 70%;
    max-width: 800px;
}

h1 {
    font-size: 3em;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

p {
    font-size: 1.2em;
    color: #777;
    font-weight: 400;
    line-height: 1.5;
}
