* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #ffc8dd;
    font-family: 'Montserrat', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow-x: hidden;
}

html, body {
    overflow-x: hidden;
    max-width: 100vw;
}


.container {
    text-align: center;
}

h1 {
    color: #590d22;
    font-size: 36px;
    margin-bottom: 30px;
}

p {
    color: #590d22;
    font-size: 24px;
    margin-bottom: 20px;
}

button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
}

.no-btn {
    background-color: #ffb3c1;
    color: white;
    font-weight: bold;
}

.yes-btn {
    background-color: #ffb3c1;
    color: white;
    margin-top: 20px;
    font-weight: bold;
    font-size: 20px;
}

.no-btn:hover {
    position: absolute;
    top: 50px;
    left: 50px;
}

.yes-btn:hover {
    background-color: #ff80a4;
}

.corner-image {
    position: absolute;
    background-image: url('gallery/images/sakurabranch.png');
    background-size: contain;
    background-repeat: no-repeat;
    width: 600px;
    height: 600px; 
}

.top-left {
    top: -100px;
    left: -95px;
    transform: rotate(100deg);
}

.top-right {
    top: -100px;
    right: -95px;
    transform: scaleY(-1) rotate(-80deg);
}

@media (max-width: 768px) {
    .corner-image {
        width: 300px;
        height: 300px;
    }
    .top-left {
        top: -50px;
        left: -50px;
        transform: rotate(100deg);
    }
    .top-right {
        top: -50px;
        right: -50px;
        transform: scaleY(-1) rotate(-80deg);
    }
}