@import url('https://fonts.googleapis.com/css2?family=VT323&display=swap');

body {
    font-family: 'VT323', monospace;
    background-image: url("bg10.jpg");
    backdrop-filter: blur(35px);
    background-size: cover; 
    background-position: center;
    text-align: center;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.window {
    background: #c0c0c0;
    width: 400px;
    border: 4px solid #000;
    box-shadow: 5px 5px 0px #808080;
    text-align: left;
}
.title-bar {
    background: navy;
    color: white;
    padding: 5px;
    display: flex;
    justify-content: space-between;
    font-weight: bold;
}
.content {
    padding: 20px;
    background: white;
}
h1 {
    color: black;
    font-size: 1.5em;
}
.buttons {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 10px;
}
button {
    font-size: 1.2em;
    padding: 5px 15px;
    border: 2px solid black;
    background: lightgray;
    cursor: pointer;
}
#yes:hover {
    background: lightgreen;
}
#no {
    background: lightcoral;
    position: absolute;
}