* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    background-color: #1C1C1C;
    color: #E5E5E5;
    font-family: 'Courier New', monospace;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    cursor: pointer;
}
.container {
    padding: 2rem;
}
.none-text {
    font-size: 2rem;
    transition: opacity 0.5s ease;
}
.hidden-text {
    display: none;
    margin-top: 2rem;
    font-size: 1rem;
    line-height: 1.6;
}
.hidden-text p {
    margin-bottom: 1rem;
}
.small {
    font-size: 0.8rem;
    color: #7A7A7A;
}
.link a {
    color: #BFBFBF;
    text-decoration: none;
    border-bottom: 1px dotted #BFBFBF;
.link a:hover {
    color: #E5E5E5;
    border-bottom: 1px solid #E5E5E5;
}
