/* DF KOIN - DMC2 FONT FOR WARNING, couldve used DMC font but its uglier */
@font-face {
    font-family: 'DF Koin';
    src: url('/fonts/DFKoin.otf');
}

/* DMC photo of win as the background - Dante on right, box on left */
body {
    font-family: 'DF Koin';
    color: white;
    background-image: url('/assets/imagestuff/DMCWIN.png');
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    object-fit: contain;
    background-size: cover;
    /* FULL SCREEN - viewport height */
    height: 100vh;
    overflow: hidden;
    margin: 0;
}

#container {
    position: absolute;
    width: fit-content;
}

.warning-box {
    background-color: #1a0101c5;
    border: 2px inset rgb(167, 0, 0);
    padding: 10px;
    color: white;
    font-family: 'DF Koin';
    text-align: center;
    box-shadow: inset 0 0 5px black;
    width: 850px;
    height: 859px;
    position: relative;
    margin: 30px;
    left: 215px;
}

.warning-box-text {
    font-family: 'DF Koin';
    font-size: 20px;
    margin-top: 5px;
    padding: 30px;
}

.interact-row {
    display: flex;
    justify-content: center;
    gap: 250px;
}

.interact-row img {
    width: 70px;
    height: auto;
}