body {
    font-family: Arial, sans-serif;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    flex-direction: column;
    background-color: #221E19;
    margin: 0;
    border-left: 5px solid #E95FD3;
}

#quiz-container {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
}

.brand-match {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 1rem;
}

.brand {
    width: 65vw;
    box-sizing: border-box;
    border-radius: 25px;
    border: 2px solid #E95FD3;
    color: #fff;
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 0;
    margin-top: 0;
    background-color: #221E19;
}

.brand-bio {
    text-align: left;
    background-color: #fff;
    padding: 2rem 3rem;
    border-radius: 25px;
    width: 65vw;
    box-sizing: border-box;
    font-size: 1.3rem;
}

h1 {
    color: #fff;
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 0;
}

h2 {
    width: 65vw;
    background-color: #fff;
    font-size: 2rem;
    font-weight: 400;
    padding: 1rem;
    box-sizing: border-box;
    margin-bottom: 3rem;
    margin-top: 0;
    border-radius: 25px;
}

.buttons {
    display: flex;
    width: 65vw;
    gap: 2rem;
}

button {
    flex: 1;
    padding: 10px 20px;
    font-size: 2rem;
    aspect-ratio: 1/1;
    border-radius: 25px;
    border: none;
    cursor: pointer;
    text-wrap: balance;
}

@media(max-width: 1440px) {
    button {
        font-size: 1.6rem;
    }
}

.progress-container {
    margin-top: 3rem;
    font-size: 2rem;
    font-weight: 400;
    background-color: #E95FD3;
    border-radius: 25px;
    padding: 1rem 3rem;
}

.image-container {
    display: inline-block;
    flex: 1;
}

.image-container img {
    width: 100%;
    margin-top: 2rem;
    object-fit: contain;
}

.image-container button {
    width: 100%;
}

.privacy-policy {
    font-size: 1rem;
    color: #fff;
    margin-top: 4rem;
    text-decoration: none;
}

@media(max-width: 768px) {
    body {
        height: auto;
    }

    h1 {
        font-size: 3rem;
    }

    h2 {
        margin-top: 0;
        margin-bottom: 3rem;
        width: 80vw;
    }

    .buttons {
        flex-direction: column;
        width: 80vw;
    }

    button {
        flex: none;
        aspect-ratio: auto;
        padding: 1rem;
        font-size: 1.5rem;
    }

    .brand {
        width: 80vw;
        font-size: 3rem;
    }

    .brand-bio {
        width: 80vw;
    }

    .progress-container {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }
}