* {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f0f4f8;
    line-height: 1.6;
    padding: 20px;
}

a {
    color: rgb(5, 5, 189);
    font-weight: bold;
    text-decoration: none;
}

a:hover {
    color: rgb(10, 10, 237);
    font-weight: bold;
    text-decoration: underline;
}

.container {
    max-width: 900px;
    margin: auto;
    background-color: white;
    padding: 20px 30px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.centered {
    text-align: center;
    position: relative;
}

.left {
    text-align: left;
    position: relative;
}