/* basic structure of the page*/
html, body {
    width: 100%;
    height: 100%;
    background-color: #1b1818;
    
    margin: 0;
    padding: 0;

    display: flex;
    align-items: center;
    justify-content: center;
}

/* language button */
.lang-btn {
    position: fixed;
    top: 15px;
    right: 15px;
    
    background-color: #333;
    color: #f0ecec;
    border: 2px solid #f0ecec;
    border-radius: 8px;
    
    font-family: sans-serif;
    font-size: 16px;
    font-weight: bold;
    
    padding: 8px 14px;
    cursor: pointer;
    z-index: 10;
    
    transition: background-color 0.2s ease;
}

.lang-btn:hover {
    background-color: #444;
}

/* 'in construct' image box as body */
.box {
    width: 100vw;
    height: 100vh;
    
    border: none;

    display: flex;
    align-items: center;
    justify-content: center;
}

img {
  width: 100%;
  height: 100%;
  
  object-fit: contain;
  object-position: top center;

  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  image-rendering: pixelated;
}