/* Main-Home :: CSS-VANILLA/FRAMEWORKS */
body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #5e822dd6;
}

.container {
    text-align: center;
}

h1 {
    font-size: 24px;
    margin-bottom: 20px;
}

aside {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.option-button {
    padding: 10px 20px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: transparent;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: inline-block;
}

.option-button:hover {
    background-color: #7aa1b1;
}


/* CSS-VAnilla */

.bg{
    background-color: #7aa1b1;
}

body {
    font-family: 'Courier New', monospace;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-size: 0.875rem; /* 14px */
    color: #333;
  }
  
  a {
    text-decoration: none;
  }
  
  img {
    image-rendering: pixelated;
  }
  
  .overlay {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 10;
  }
  
  .button-container {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
  }
  
  .button {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 90px;
    pointer-events: auto;
    text-align: center;
  }
  
  .centered-img {
    position: absolute;
    width: 90px;
    height: 90px;
    cursor: pointer;
    pointer-events: auto;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  /* Header */
  .header {
    position: fixed;
    top: 1.75rem;
    left: 1.75rem;
    right: 1.75rem;
    display: flex;
    justify-content: space-between;
    z-index: 30;
  }
  
  .header-link {
    color: rgba(0, 0, 0, 0.5);
    padding: 0.25rem;
    font-family: 'Courier New', monospace;
  }
  
  .header-link:hover {
    color: #cd3f25;
  }
  
  .store {
    position: relative;
  }
  
  .store-dropdown {
    position: absolute;
    top: 100%;
    left: -2px;
    border: 2px solid black;
    background-color: white;
    display: none;
    grid-template-columns: 1fr;
    padding: 0.25rem;
    box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.25);
  }
  
  .store:hover .store-dropdown {
    display: block;
  }
  
  .store-link {
    padding: 0.25rem 0.5rem;
    color: inherit;
  }
  
  .store-link:hover {
    color: #cd3f25;
  }
  
  /* Footer */
  .footer {
    position: fixed;
    bottom: 2rem;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 30;
    font-family: 'Courier New', monospace;
  }
  
  .footer-link {
    color: rgba(0, 0, 0, 0.5);
    padding: 0.25rem;
  }
  
  .footer-link:hover {
    color: #cd3f25;
  }
  