h1 {
    text-align: center;
}

.container {
    display: flex;
    justify-content: center;
    align-items: start;
    gap: 20px;
    margin: 30px;
}

.intro, .yes-no, .box {
    background-color: #90bbe8;
    border-radius: 20px;
    padding: 20px;
    width: 50%;
    box-shadow: 10px 10px #2f2940;
}

.yes-no {
    display: flex;
    justify-content: space-between;
}

.vertical-line {
    width: 2px;
    border-radius: 50px;
    background-color: #2f2940;
}

.yes, .no {
    width: 40%;
}

.intro h2 {
    padding-left: 40px;
}

.star-list {
    list-style: none;
}

.star-list li::before {
    content: "★ ";
}

.center {
    display: flex;
    justify-content: center;
}

.box {
    text-align: center;
    margin-bottom: 50px;
}

blockquote {
    padding-left: 15px;
    border-left: 3px solid #2f2940;
    text-align: left;
    width: 50%;
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
        align-items: center;
    }

    .intro, .yes-no, .box {
        width: 75%;
    }
}