body {
    font-family: sans-serif;
    background-color: #eaf1a2;
    color: #021089;
}

/*TEXT FORMATTING*/
h1 {
    color: green;
    text-align: center;
    font-size: 30px;
}

h2 {
    color: #65b891;
    text-align: center;
    font-size: 40px;
    border: 2px dashed #065A45;
}

h3 {
    color: #65b891;
    font-size: 22px;
}

h4 {
    color: #65b891;
    font-size: 14px;
}

.centered-text {
    text-align: center;
    font-size: 40px;
    font-weight: bold;
    color: #02E4E7;
}

/*DISCOGRAPHY CONTAINER*/
.discImgContainer {
    max-width: 50%;
    /*border: 4px dashed #9F93E6;*/
    display: flex;
    justify-content: center; /* Align items horizontally centered */
    align-items: center; /* Align items vertically centered */
}

.discImgContainer img {
    width: 100%;
}

.discImages {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.container {
    display: flex;
    background-color: #010C43;
}

.left-column {
    flex: 0 0 30%;
    padding: 20px;
}

.right-column {
    flex: 1;
    padding: 20px;
    background-color: #010C43;
    display: flex;
    justify-content: center;
    align-items: center;
}

.right-column-meta {
    flex: 1;
    padding: 20px;
    background-color: #010C43;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}