* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

ul {
    list-style-type: none;
}

html {
    height: 100%;
}

body {
    line-height: 1;
    font-size: 16px;
    min-width: 360px;
    overflow-x: hidden;
    background-color: #f7d3d3;
    font-family: "Lucida Console", Arial, sans-serif;
    height: 100%;
    padding: 1rem;
    display: flex;
    align-content: center;
    justify-content: center;
    flex-direction: column;
}

.card {
    background-color: #ffedcc;
    border-radius: 1rem;
    padding: 1rem;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
    margin: 0 auto;
    height: 100%;
    max-height: 550px;
    max-width: 400px;
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.card.card--active {
    display: flex;
}

#flower, .video {
    max-width: 300px;
    max-height: 300px;
    height: auto;
    flex: none;
}

h1 {
    font-size: 1.5rem;
    text-align: center;
    margin-top: 2rem;
}

h1 span {
    font-size: 1.2rem;
    opacity: 0.7;
}

.buttons {
    margin-top: 2rem;
    display: flex;
    width: 100%;
    justify-content: space-around;
    gap: 2rem;
}

button {
    font-weight: 600;
    font-size: 1rem;
    border-radius: 0.5rem;
    padding: 0.3rem 0.4rem;
    background-color: #fe9bdc;
    border: 2px solid #ff0100;
    cursor: pointer;
    transition: 0.2s all ease;
}

button:active {
    transform: translateY(-2px);
}

#yes {
    font-size: 1.5rem;
}

#no {
    background-color: #d9d3ce;
    border: none;
}

ul {
    margin-top: 1rem;
}

li + li {
    margin-top: 0.5rem;
}

li input {
    margin-right: 0.5rem;
}