* {
    margin: 0;
    padding: 0;
    box-sizing: a;
    font-family: monospace;
  }
  
  html, body {
    height: auto;
    min-height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    font-family: Arial, Helvetica, sans-serif;
  }
  
  .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    height: auto;
    text-align: center;
    padding: 20px;
    background-image: url(images/background.jpg);
    background-position: center;
    margin: 0 auto;
  }
  
  .btn {
    cursor: pointer;
    background: #1a3a8f;
    border: 2px solid #3e64ff;
    border-radius: 10px;
    padding: 15px 20px;
    color: white;
    font-size: 1rem;
    transition: background-color 0.3s ease;
  }
  
  .btn:hover {
    background-color: #3e64ff;
    box-shadow: 0 0 10px #3e64ff;
  }
  
  .btn-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin: 25px 0;
    width: 100%;
  }
  
  .answer-buttons {
    background-color: #1a3a8f;
  }
  
  #question-container {
    display: flex;
    flex-direction: column;
    color: white;
    text-shadow: 0 0 15px white;
    align-items: center;
    margin: auto;
  }
  
  #question-image {
    display: flex;
    border-radius: 20px;
    width: 480px;
    height: 270px;
    margin: 0 auto;
    margin-top: 20px;
    border: solid #1a3a8f;
    box-shadow: 0 0 20px#66c0f4;
}

#question {
    background: #1a3a8f;
    border: 3px solid #3e64ff;
    padding: 10px 20px;
    border-radius: 15px;
    color: #ffffff;
    font-weight: bold;
    text-shadow: 0 0 10px #3e64ff;;
}

#photo-container {
    width: auto;
    margin: auto;
    align-items: center;
    margin-top: 100px;
  }
  
#photo-description {
    font-weight: bold;
    padding: 12px 12px;
    border-radius: 10px;
    background-color: #1a3a8f;
    box-shadow: 0 0 20px #66c0f4;
    display: flex;
    text-shadow: 0 0 10px white;
    font-size: 1.2rem;
}

#match-photo {
    width: 20%;
    margin: auto;
    margin-bottom: 20px;
    border: solid #1a3a8f;
    box-shadow: 0 0 20px#66c0f4;
    border-radius: 30px;
  }
  
  #photo-message {
    background: #1a3a8f;
    border: 2px solid #66c0f4;
    border-radius: 10px;
    box-shadow: 0 0 10px#66c0f4;
    padding: 15px 20px;
    color: white;
    font-size: 1rem;
    transition: background-color 0.3s ease;
    width: 500px;
    margin: auto;
}

#yes-button {
    margin-right: 100px;
}
#no-button {
    margin-left: 100px;
}

body, html {
    height: 100%;
    font-family: monospace;
}
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    padding: 20px;
    background-image: url(images/background.jpg);
    background-position: center;
    margin:0 auto;
  }

.logo {
    background-image: url(images/app_icon.png);
    position: absolute;
    scale: 6.5%;
    top: -475px;
    left: -475px;
    z-index: 1;

}

#result-container {
    display: flex;
    flex-direction: column;
    background-color: #1a3a8f;
    font-weight: bold;
    color: white;
    padding: 12px 24px;
    font-size: 1.2rem;
    border-radius: 30px;
    transition: background-color 0.3s ease;
    box-shadow: 0 0 20px #66c0f4;

    width: 90%;
    max-width: 75rem;
    margin: 0 auto;
}

#restart-button {
    display: inline-block;
    background-color: #1a3a8f;
    font-weight: bold;
    color: white;
    padding: 12px 20px;
    border-radius: 30px;
    margin-top: 20px;
    cursor: pointer;
}

#start-photo-btn {
    margin-top: 10px;
}
#restart-button:hover {
    background-color: #1a3a8f;
    box-shadow: 0 0 10px #66c0f4;
}

.hide {
    display: none !important;
  }
  
  /* Responsive styles */
  @media (max-width: 768px) {
    #question-image {
      width: 90%;
      height: auto;
    }
  
    #match-photo {
      width: 60%;
    }
  
    #photo-message {
      width: 90%;
      font-size: 0.9rem;
    }
  
    #yes-button,
    #no-button {
      margin: 10px;
    }
  }
  
  @media (max-width: 480px) {
    .btn {
      padding: 10px 15px;
      font-size: 0.9rem;
    }
  
    #photo-description {
      font-size: 0.9rem;
      flex-direction: column;
      align-items: center;
    }
  
    #photo-message {
      font-size: 0.85rem;
    }
  }
  