html {
  height: 100%;
}

body {
    font-family: "Inter", sans-serif;
    background-repeat: repeat;
    background-image: url("./bgbear.webp");
}

.site-header {
    text-align: center;
    padding: 40px 20px;
}

.header-image {
    width: 500px;
    height: 150px;
    display: block;
    margin: auto;
}

main {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
}

.game {
    background: white;
    padding: 30px;
    display: flex;
    gap: 30px;
    align-items: center;
}

.game-image {
    width: 45%;
    height: auto;
}

.game-info {
    flex: 1;
}

@media (max-width: 650px) {
    .game {
        flex-direction: column;
    }

    .game-image {
        width: 100%;
    }
}

.site {
    width: 700px;
    max-width: calc(100% - 30px);
    margin: 0 auto;
}
.white-box {
    background: white;
    width: 600px;
    margin: 30px auto;
    padding: 20px;
    border: 4px outset pink;
}
.sys {
    color: #FF6EAD;
    font-weight: 700;
    text-shadow: 1px 1px 0 #ddd;
}
 h3 {
    color: #FF2694;
    font-weight: 700;
    text-shadow: 1px 1px 0 #ddd;
    background: url("textbg.png") center / 100% 100% no-repeat;
    width: 300px;
    padding: 15px;
    text-align: center;
}
 h1 {
   color: #e50be5;
   font-weight: 700;
   text-shadow: 1px 1px 0 #ddd;
}
footer {
    width: 600px;
    margin: 30px auto;
    text-align: center;
    font-size: 12px;
}

footer a {
    color: inherit;
}

@font-face {
    font-family: 'Inter';
    src: url('fonts/Inter-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('fonts/Inter-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

.privacy-page {
    max-width: 750px;
    margin: 30px auto;
    padding: 30px 40px;
    background: white;
    line-height: 1.6;
}

.privacy-page h1 {
    text-align: center;
}

.privacy-page h2 {
    margin-top: 30px;
}
