@import url("https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap");

.top-bar {
    margin: 0;
    padding: 5px;
    text-align: center;
    background-color: #9a0000;
    color: floralwhite;
    
}

h1 {
    font-size: xx-large;
    font-family: "Nunito";
    font-weight: 800;
    text-align: center;
}

.block-text {
    font-size: large;
    text-align: center;
}

.main {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    padding: 2px;
    justify-content: space-between;
    gap: 16px;
}

@media (max-width: 600px) {
    .main {
        flex-direction: column;
    }
}

.interests-hobbies {
    background-color: lightgray;
    padding: 20px;
    margin: 10px;
    border-radius: 12px;
}

.header {
    color: lightgray;
    padding: 10px;
    margin: 10px;
    background-color: #111111;
    border-radius: 12px;
    text-align: center;
}

.links-photos {
    display: flex;
    flex-direction: row;
    min-width: 200px;
    padding: 10px;
    margin: 10px;
}

.scorbunny-img {
    width: 50%;
    align-self: auto;
}

#footer {
    background-color: #111111;
    color: lightgray;
    padding: 10px;
    margin: 10px;
    text-align: center;
}

.spotify-embeds {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    justify-items: center;
    gap: 10px;
    width: 100%;
    max-width: 950px; /* 3 Columns x 300px = 900px max + 50 to account for the gaps */
    margin: 0 auto; /* This centers it */
}

.spotify-embeds iframe {
    width: 100%;
}
