body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(120deg, #e0eafc, #cfdef3);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    background: white;
    border-radius: 15px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
    padding: 30px;
    text-align: center;
    width: 400px;
    max-width: 100%;
    transition: transform 0.3s, box-shadow 0.3s;
}

.container:hover {
    transform: scale(1.05);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.4);
}

h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #333;
}

.flag-container {
    margin-bottom: 20px;
}

img#flag-image {
    width: 100%;
    height: auto;
    max-width: 300px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.options {
    margin-bottom: 20px;
}

.option-button {
    background: #383737;
    border: none;
    border-radius: 8px;
    color: white;
    cursor: pointer;
    font-size: 1.2em;
    padding: 10px 20px;
    margin: 5px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.option-button:hover {
    background-color: #333;
    transform: scale(1.05);
}

.option-button:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.result {
    margin-top: 20px;
}

#feedback {
    font-size: 1.5em;
    color: #444;
}

#try-again-button {
    background: #383737;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.2em;
    padding: 10px 20px;
    margin-top: 10px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

#try-again-button:hover {
    background-color: #333;
    transform: scale(1.05);
}
.copyright{
    color: black;
    margin-top: 50px;

}
  .link {
    color: black;
    text-decoration: none;
  }

  .link:hover {
    color: #444;
    text-decoration: underline;
  }
