body {
    background-color: #555;
    background: url('background2.jpg') center;
    background-blend-mode: darken;
    background-position: center;
    background-size: cover;

    height: 100vh;

    overflow: hidden;

    user-select: none;
}

#container {
    top: 50%;
    left: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    background-color: #0004;

    border: solid 2px #0005;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;

    padding: 20px;
    text-align: center;
    color: whitesmoke;
    font-family: monospace;
}
#container2 {
    display: flex;
    padding: 10px;
    padding-bottom: 10px;
    background-color: #0003;
}

#container2 > * {
    margin: auto;
    margin-left: 8px;
    margin-right: 8px;
    box-sizing: content-box;
    min-width: 150px;
}

a {
    text-decoration: underline;
    text-decoration-color: orangered;

    color: orangered;
}
a:hover {
    text-decoration-style: dotted;
}

@font-face {
    font-family: Kanit;
    src: url("Kanit-Regular.ttf");
}