body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background: #f5f5f5;
    color: #1a1a1a;
    font-family: 'Fira Mono', 'Consolas', 'Monaco', monospace;
    display: flex;
    flex-direction: column;
}

#page-title {
    position: relative;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(1rem, 3vw, 3.2rem);
    margin: 0;
    padding: 0.1em 0 0.1em 0;
}

.info {
    position: relative;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(1rem, 2vw, 3.2rem);
    margin: 0 0 clamp(1rem, 5vw, 5rem) 0 ;
    padding: 0.1em 0 0.1em 0;
}

h1 {
    margin-bottom: 0;
}
#links-container {
    position: relative;
    top: 10%;
    width: 90vw;
    max-width: 500px;
    min-width: 0px;
    margin: 0 auto;
    text-align: center;
}
.btn {
    display: block;
    width: 100%;
    min-width: 0px;
    box-sizing: border-box;
    font-size: clamp(0.5rem, 4vw, 2.2rem);
    font-family: inherit;
    text-decoration: none;
    color: #222;
    background: #f8f8f8;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    border: none;
    text-align: center;
    transition: background 0.2s;
    overflow-wrap: break-word;
    word-break: break-word;
}

.back-btn {    
    background: #e2e2e2;
    font-size: clamp(0.5rem, 2vw, 1.1rem);
    margin: clamp(0.5em, 1vw, 2em) 0 clamp(0.5em, 4vw, 2em) 0;
    padding: clamp(0.25em, 0.5vw, 1em) clamp(0.25em, 0.5vw, 1em);
    
}

.art-link-button {    
    margin: clamp(0.5em, 2vw, 2em) 0;
    padding: clamp(0.5em, 2vw, 2em) clamp(1em, 4vw, 3em);        
}
.btn:hover {
    color: #f8f8f8;
    background: #bbbbbb;
}   

.btn-sub {
    display: block;
    font-size: clamp(0.25rem, 1.5vw, 1rem);
    font-style: italic;
    color: #555;
    margin-top: clamp(0.25rem, 1.5vw, 1rem);
}
.back-btn .btn-sub {
    font-size: clamp(0.125rem, 1.0vw, 1.0rem);
    margin-top: 0;
}