html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #ecebd5;
}

section {
    background-color: #ecebd5;
    max-width: 1220px;
    margin: auto;
    padding: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    height: auto;
}

section:first-of-type {
    margin-top: 0;
}

.imgbk {
    width: 100%;
    max-width: 1220px;
    margin: 0 auto;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    border-radius: 18px;
}

.imgbk img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 18px;
}

.social-icons {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    width: 100%;
    height: auto;
}

.social-icons a svg {
    width: 26px;
    height: 26px;
    transition: background-color 0.3s;
}

.social-icons a:hover svg {
    filter: brightness(0.5);
}

.social-icons a {
    margin: 0 8px;
}

.about-section {
    background-color: #ecebd5;
    text-align: center;
    font-display: justify;
    max-width: 1220px;
}

.about-text p {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

.about-text strong {
    font-weight: bold;
    color: #000;
}

.content-wrapper {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    width: 100%;
}

.spotify {
    display: flex;
    justify-content: center;
    height: auto;
    max-height: 80px;
    border-radius: 12px;
    margin-top: 20px;
    margin-bottom: 20px;
    padding-bottom: 10px;
}

.spotify-wrapper {
    display: flex;
    justify-content: center;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.spotify-wrapper iframe {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}