body {
    background-color: black; 
    color: white; 
    font-family: 'Courier New', Courier, monospace;
    line-height: 1.6;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around; 
}

.column {
    flex: 1;
    min-width: 350px; 
    max-width: 400px;
    margin: 20px;
    display: flex; 
    flex-direction: column; 
    align-items: center;
}

img {
    max-width: 100%;
    height: auto;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.link {
    font-size: 1em;
    margin-top: 10px;
}

.link a {
    color: #fff;
    text-decoration: none;
}

.link a:hover {
    text-decoration: underline;
}

video {
    width: 100%; 
    margin: 10px 0; 
    background-color: #000; 
}

.secret-link {
    position: fixed; 
    bottom: 20px;
    right: 20px;
    color: transparent; 
    text-decoration: none;
}

.flex-space-between {
    display: flex;              
    justify-content: space-between; 
    align-items: center;        
    width: 100%;
}

.flex-space-between span,
.flex-space-between a {
    margin: 0;                 
    padding: 0;                
}