html {
    background-color: black;
    color: white;
    font-family: monospace, sans-serif;
}
body {
    width: 100%;
    height: 100%;
    margin: 0;
    overflow: hidden;
}
.content {
    width: 100vw;
    height: 100vh;
}
.img {
    width: 200px;
    height: auto;
    user-select: none;
    pointer-events: none;
}
.modal {
    display: flex;
    position: fixed;
    align-items: center;
    justify-content: center;
    inset: 0;
}
.modal-content, .button {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    border: 2px solid white;
    border-radius: 15px;
    width: 500px;
    padding: 30px;
}
.modal-content button {
    position: fixed;
    width: fit-content;
    top: 10px;
    right: 10px;
}
.button {
    color: white;
    padding: 1%;
}
.button:hover {
    background: rgba(30, 30, 30, 1);
    cursor: pointer;
}