@font-face {
    font-family: DOS-V;
    src: url('/resources/fonts/DOS-V_re_ANK24.woff');
}

@font-face {
    font-family: Toshiba;
    src: url('/resources/fonts/Web437_ToshibaTxL1_8x16.woff');
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    color: black;
    font-family: "DOS-V";

    cursor: url(/resources/theme/cursor.png), default !important;

    overflow: hidden;

    background-image: url('/resources/backgrounds/window.png');
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}

h1 {
    font-size: 20px;
    font-family: "Toshiba";
}

h2 {
    font-size: 12px;
    font-family: "Toshiba";
}

mark {
    color: #d62828;
    background-color: transparent;
}

a:hover {
    cursor: url(/resources/theme/pointer.png), default
}

#container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    max-width: 900px;
    margin: 60px auto;
    margin: 0;
}

.image-button {
    border: none;
    height: auto;
    width: auto;
    cursor: url(/resources/theme/pointer.png), default;
    background-color: transparent;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-button img {
    max-height: 200px;
    width: auto;
    display: block;
}

main {
    padding:80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 10px;
    flex: 1;
}

main p {
    background-color: #f3f3f4d7;
    padding: 8px 12px;
    border-radius: 4px;
    display: inline-block;
}

.tilt {
    transition: transform 0.3s ease-in-out;
    transform-origin: center center;
}

.tilt:hover {
    transform: rotate(2deg);
    cursor: url(/resources/theme/question.png), default;
}
