:root {
    --album-cover-url: url('https://cdn.taylordle.oskar.nz/albumcovers1.webp')
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-container {
    max-width: 95vw;
    width: 560px;
    padding: 20px;
}

.config-container, .game-config {
    width: 100%;
}

.main-container, .game-config {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.config-options {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;

    .config-option {
        width: 30%;
        padding: 1vw;
        margin: 1vw;
        border: 1px solid transparent;
        border-radius: 10px;
        cursor: pointer;

        h3 {
            font-weight: normal;
            padding: 0 0 10px 0;
            margin-bottom: 10px;
            border-bottom: 1px solid;
        }
    };

    .config-option.active {
        border-color: black;
        h3 {
            font-weight: bold;
        }
    }
}

.config-container.albums{
    
    .config-option {
        all: unset;
        flex-shrink: 0;
        height: 90px;
        width: 45%;
        display: flex;
        flex-direction: row;
        justify-content: space-between;

        h3 {
            width: 45%;
            font-weight: normal;
            border: none;
            padding: none;
        }
    
        .album-cover {
            height: 100%;
            border-radius: 10px;
            aspect-ratio: 1 / 1;
            background-image: var(--album-cover-url);
            background-size: 400% 300%;
        }

        input {
            pointer-events: none
        }
    };

    .config-option.active {
        h3 {
            font-weight: bold;
        }
    }

    .config-options {
        box-sizing: content-box;
        width: calc(100% - 4vw);
        padding: 2vw;
        flex-direction: column;
        flex-wrap: wrap;
        justify-content: flex-start;
        height: 590px;
        gap:10px;
    }
}

@media (max-width: 450px) {
    .config-container.albums{

        .config-options{
            gap: 20px;
            height: 650px;
        }
    
        .config-option {
            flex-direction: column;
            align-items: center;
            width: 30%;
            height: 130px;

            h3 {
                width: 100%;
                text-align: center;
            }
            
            .album-cover {
                height: auto;
                width: 80%;
            }
        }
    }
}