body {
    margin: 0;
    height: 100vh;
    background-color: #ffb6c1; /* lyserød baggrund */
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Arial, sans-serif;
}

.box {
    background-color: #ffd1dc; /* lysere lyserød */
    padding: 100px 80px;              /* mere luft = højere boks */
    min-height: 300px;               /* sikrer at den er høj */
    border-radius: 25px;
    border: 4px solid #ff8fab;
    text-align: center;
    position: relative;
}

h1 {
    font-size: 36px;                 /* større tekst */
    margin-bottom: 50px;
}

button {
    padding: 20px 45px;              /* større knapper */
    font-size: 22px;                 /* større tekst i knapper */
    border: none;
    border-radius: 15px;
    cursor: pointer;
}

#yes {
    background-color: #ff4d6d;
    color: white;
    margin-right: 30px;
}

#no {
    background-color: #adb5bd;
    font-size: 22px;
    position: absolute;
}


.success {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.success img {
    margin-top: 30px;
    max-width: 300px;
    border-radius: 15px;
}

