body {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 90vh;
    background-color: #f0c0d4;
}

.message-container {
    display: flex;
    justify-content: center;
}

.message {
    font-family: "Iskra bold";
    color: rgb(176, 48, 72);
    font-size: 40px;
}

.image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 160px;
}

.buttons-container {
    margin-top: 50px;
    display: flex;
    gap: 20px;
    justify-content: center;
}

.button {
    background-color: rgb(166, 73, 224);
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 28px;
    margin: 14px -20px;
    cursor: pointer;
    border: none;
    border-radius: 12px;
    transition: background-color 0.3s ease;
}

#no-button {
    position: absolute;
    margin-left: 150px;
    transition: 0.5s;
}

#yes-button {
    position: absolute;
    margin-right: 150px;
}

@font-face {
    font-family: 'Iskra bold';
    src: url('fonts/\ IskraCYR-Bold.otf');
}