.center {
    margin: auto;
    text-align: center;
    padding: 10px;
    border: 0px solid black;
    border-radius: 0px;
    background-color: none;
    width: min(814px, 100% - 40px);
    height: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: none;
    transition: transform 0.2s;
    font: 20px Tahoma, sans-serif;
    border-image: ;

}
body {
    background-color: black;
    background-image: linear-gradient(rgb(254, 223, 164), rgb(106, 44, 252));
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
}
.center img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
    box-shadow: 10px 10px 20px rgba(252, 242, 180, 0.5); /* Add drop shadow */
    border-radius: 5px; /* Optional: Add rounded corners */
}
.center h3 {
    text-align: center;
    text-shadow: 2px 3px 8px rgba(82, 81, 0, 0.55);
    color: rgb(255, 224, 139);
}
.center text {
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.5); /* Add drop shadow */
    border-radius: 5px; /* Optional: Add rounded corners */
}
.menu-link {
    position: fixed;
    left: 20px;
    bottom: 20px;
    width: 44px;
    height: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-decoration: none;
    z-index: 10;
}
.menu-link span {
    display: block;
    height: 2px;
    background: #ffffff;
    border-radius: 5;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.35);
}
.menu-link:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: 6px;
}
.corner-svg {
    position: fixed;
    right: 20px;
    bottom: 60px;
    width: 180px;
    height: auto;
    filter: drop-shadow(6px 10px 16px rgba(0, 0, 0, 0.45));
    z-index: 9;
}
@media (max-width: 900px) {
    .center {
        width: calc(100% - 40px);
    }
}
