@font-face {
    font-family: 'regular';
    src: url('index.ttf');
}

/* Base styles */
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow-x: auto;
    background-image: url('index.png');
    background-size: 80%;
    font-family: 'regular';
    text-align: center;
}

iframe {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    aspect-ratio: 16 / 9;
    width: 80vw;
    max-width: 1280px;
    height: auto;
    border: 2px solid orange;
    border-radius: 16px;
    box-shadow: 10px 10px 10px black;
}

.me {
    position: absolute;
    bottom: 8px;
    right: 8px;
    font-size: 20px;
    text-align: right;
    color: blue;
    text-shadow: 2px 2px 2px deepskyblue;
    border: 2px solid darkblue;
    border-radius: 4px;
    padding: 4px;
    background-color: rgba(0, 0, 255, 0.300);
}