/* Import a clean, readable font */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500&display=swap');

/* Basic reset and body styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f5f5f5;
}

/* Main title styling */
h1 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e0e0e0;
    font-weight: 500;
}

/* Collection section headers */
h2 {
    color: #34495e;
    margin: 25px 0 15px 0;
    padding: 10px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    font-weight: 400;
}

/* Individual coin entries */
p {
    margin: 8px 15px;
    padding: 8px 15px;
    background-color: white;
    border-left: 3px solid #3498db;
    border-radius: 0 3px 3px 0;
    transition: transform 0.2s ease;
}

p:hover {
    transform: translateX(5px);
    background-color: #f8f9fa;
}

/* Responsive design */
@media (max-width: 600px) {
    body {
        padding: 15px;
    }
    
    h1 {
        font-size: 24px;
    }
    
    h2 {
        font-size: 20px;
    }
    
    p {
        font-size: 16px;
        margin: 8px 10px;
    }
}