body {
    /* background: linear-gradient(135deg, #d4e4fc, #b3d4fc); */
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    height: 100vh;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

h1 {
    font-size: 3rem; 
    font-weight: bold;
    color: #34495e;
    margin-bottom: 20px;
}

p {
    font-size: 1.5rem;
    color: #34495e;
    margin-bottom: 40px;
}

a {
    text-decoration: none;
    color: white;
    background-color: #3498db; 
    padding: 15px 30px;
    font-size: 1.2rem;
    border-radius: 5px;
    transition: background 0.3s;
}

a:hover {
    background-color: #1e90ff;
}


