/*
 * author Julien Therrien
 * created on 17-12-2025-21h-16m
 * github: https://github.com/thebadlorax
 * copyright 2025
*/

html {
    overscroll-behavior: none;
    font-family: "Jersey 20", sans-serif;
    font-weight: 200;
    font-size: 20px;
    font-style: normal;
}

.input {
    font-family: "Jersey 20", sans-serif;
    font-weight: 200;
    font-size: 20px;
    font-style: normal;
}

body {
  background-image: url("../res/bg.png");
  background-color: black;
  background-repeat: no-repeat;
  /*background-size: 1450px 1450px*/
  background-size: 100vw 100vw;
  color: black;
  text-decoration: none;
  height: 100vw;
}

.main-container {
    display: flex;
    position: absolute;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    /*padding-bottom: 200px;
    padding-top: 150px;
    left: 150px;*/
    left: 10vw;
    top: 12vw;
}

.banner-container {
    padding-bottom: 2vw;
    width: 50vw;
}

.banner-image {
    border-radius: 15px;
    width: 100%;
    height: 100%;
}

.row-container {
    display: flex;
    flex-direction: row;
    /*width: 1200px;*/
    width: 82vw;
    justify-content: center;
}

.column-container {
    /*width: 300px;
    height: 800px;*/
    width: 20vw;
    height: 55vw;
    flex-direction: column;
    display: flex;
    flex-wrap: nowrap; /* Allows items to wrap onto multiple lines */
}

.small-item {
    flex: 1 1;
    margin-right: .5vw;
    background-image: url("../res/small_item_bg_eaten.png");
    /*background-size: 275px 260px;*/
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    margin-left: 1.7vw;
    margin-top: .5vw;
    margin-bottom: .25vw;
    /*border: 2 solid #212121;*/
    padding-top: 2vw;
    text-align: center;
    font-size: 2vw;
    border-radius: 12px;
    color: black;
}

.medium-item {
    flex: 1 1;
    margin-right: .5vw;
    background-image: url("../res/medium_item_bg_eaten.png");
    /*background-size: 280px 390px;*/
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    margin-left: 1vw;
    margin-top: .5vw;
    margin-bottom: .5vw;
    /*border: 2 solid #212121;*/
    padding-top: 2vw;
    text-align: center;
    font-size: 2vw;
    border-radius: 12px;
    color: black;
}
  
.large-item {
    flex: 1 1;
    margin-right: .5vw;
    background-image: url("../res/large_item_bg_eaten.png");
    /*background-size: 460px 790px;*/
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    margin-left: 1vw;
    margin-top: .5vw;
    margin-bottom: .5vw;
    /*border: 2 solid #212121;*/
    padding-top: 2vw;
    text-align: center;
    font-size: 2vw;
    border-radius: 12px;
    color: black;
}

.basic-text {
    text-align: left;
    font-size: 1.5vw;
    margin: 0px;
    color: black;
    padding-left: 2.5vw;
}

.basic-link {
    color: grey;
    text-decoration: underline;
    font-weight: 400;
}

.basic-link:hover {
    color: black;
    font-weight: 700;
}

.error-text {
    font-size: 55px;
    color: white;
    margin: 0;
}

.back-button {
    margin-top: auto;
    background-image: url("../res/back_button_transparent.png"); /* Set the image source */
    background-repeat: no-repeat; /* Prevent the image from repeating */
    background-size: cover; /* Optional: Resizes the image to cover the entire button area */
    width: 100px; /* Set the button width */
    height: 100px; /* Set the button height */
    border: none; /* Remove default button border */
    /* Hide the text visually while keeping it accessible for screen readers */
    color: transparent;
    font-size: 0; 
    border-radius: 8px;
}

.fixed-footer {
    display: flex;
    position: fixed;
    flex-direction: column;
    align-items: center;
    top: 50%;
    left: 50%;
}

.unselectable {
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none;   /* Chrome, Safari, Opera */
    -khtml-user-select: none;    /* Konqueror */
    -moz-user-select: none;      /* Firefox */
    -ms-user-select: none;       /* Internet Explorer/Edge */
    user-select: none;           /* Standard syntax */
}

.button {
    width: 8.8vw;
    height: 3.1vw;
    padding-left: 2.5vw;
    max-width: 8.8vw;
    max-height: 3.1vw;
    image-rendering: pixelated;
    display: block;
}