@import url('https://fonts.googleapis.com/css2?family=Jacquard+12&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lekton&display=swap');

body {
    font-family: "Lekton", monospace;
    color: white;
    margin: 0;
    min-height: 100vh;

    background-color: black;
    background-image: url("../images/bgcheckers.png");
    background-repeat: repeat;
    animation: moveBg 20s linear infinite;

    display: flex;
    justify-content: center;
    align-items: center;
}

h1, h2, h3, h4, h5, h6,
.title {
    font-family: "Jacquard 12", serif;
}

@keyframes moveBg {
    from { background-position: 0 0; }
    to { background-position: 300px 300px; }
}

.page {
    width: 1000px;
}

.frame-wrapper {
    position: relative;
    width: 1000px;
    height: 700px;

    background-image: url("../images/infobox.png");
    background-size: 100% 100%;
    background-repeat: no-repeat;

    display: flex;
    justify-content: center;
    align-items: center;

    box-sizing: border-box;
}

.frame-img {
    display: none;
}


.content-grid {
    width: 850px;
    height: 500px;

    display: grid;
    grid-template-columns: 1fr 250px;
    gap: 10px;
}

.main,
.rightbar {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.box {
    color: white;

    padding: 10px;
    box-sizing: border-box;

    overflow-y: auto;
}

.hero {
    height: 230px;
}

.two-boxes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.two-boxes .box {
    height: 180px;
}

.main > .box:not(.hero) {
    min-height: 80px;
}

.tall {
    height: 100%;
}
.link,
.link:link,
.link:visited,
.link:hover,
.link:active {
    color: white;
}