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

body {
    background-color: #f5f5f5;
    font-family: Arial, sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    max-width: 800px;
    padding: 40px;
}

p {
    font-size: 18px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

a {
    color: #666;
    text-decoration: none;
    border-bottom: 1px solid #666;
}

a:hover {
    opacity: 0.7;
}

/* White selection effect */
::selection {
    background-color: white;
    color: #666;
}

::-moz-selection {
    background-color: white;
    color: #666;
}
