/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

p {
    text-align: center;
    margin-bottom: 20px;
    font-size: 24px;
}

a {
    color: #007BFF;
}
