body {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    min-height: 100vh;
    background-color: #070807;
    color: white;
    margin: 0;
    padding: 28px 0;
    font-family: 'Courier New', Courier, monospace;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 80%;
}

.text-row {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.text-block {
    flex: 1;
    margin: 0 10px;
    text-align: justify;
}

.dataset-preview {
    margin-top: 24px;
    width: 100%;
}

.dataset-preview h3 {
    margin-bottom: 10px;
}

.dataset-preview pre {
    margin: 0;
    background: #121512;
    border: 1px solid #2a322a;
    border-radius: 12px;
    padding: 14px;
    white-space: pre-wrap;
    word-break: break-word;
    line-height: 1.35;
    font-size: 12px;
}

.button-row {
    display: flex;
    gap: 14px;
    margin-top: 32px;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: center;
}

.main-button {
    display: inline-flex;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    cursor: pointer;
    text-decoration: none;
    background-color: #070807;
    padding: 10px 30px 15px;
    border: none;
    border-radius: 20px;
    font-size: 24px;
    font-weight: 500;
    transition: background-color 0.3s ease;
    letter-spacing: -0.02em;
}

.spotify-btn { color: rgb(30, 215, 96); }
.spotify-btn:hover { background-color: #1c251d; }

.youtube-btn { color: rgb(255, 0, 0); }
.youtube-btn:hover { background-color: #251f1c; }

.demofile-btn { color: rgb(255, 255, 255); }
.demofile-btn:hover { background-color: #2d2d2d; }

.github-btn { color: rgb(255, 255, 255); }
.github-btn:hover { background-color: #1f2230; }

.main-button > img {
    vertical-align: middle;
    margin-right: 5px;
    max-height: 25px;
}


@media (max-width: 900px) {
    .text-row {
        flex-direction: column;
    }

    .text-block {
        margin: 0 0 12px;
    }

    .main-button {
        font-size: 20px;
    }
}
