:root {
    --green: #00A878;
    --lightgreen: #00a87886;
    --yellow: #ECA72C;
    --red: #F44E3F;
    --blue: #08B2E3;
}

html {
    font-size: 10px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-size: 1.7rem;
}

h1 {
    text-align: center;
    font-size: 5rem;
    color: var(--red);
}

form {
    margin: 0 auto;
    width: 700px;
    text-align: center;
    display: flex;
    flex-direction: column;
}

div {
    display: flex;
    gap: 1rem;
    margin-top: 5rem;
    margin-bottom: 2rem;
}

table {
    margin-top: 2rem;
}

tr {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

td {
    border-radius: 1rem;
    min-height: 5rem;
    width: 10rem;
    color: white;
    flex-grow: 1;
    align-content: center;

}

th {
    height: 2rem;
    width: 10rem;
    flex-grow: 1;
    align-content: center;
    text-align: center;
}

/* td:last-of-type,
th:last-of-type {
    min-width: 20rem;
} */


#guess {
    border: none;
    border-radius: 1rem;
    background-color: var(--green);
    color: white;
    width: 10rem;
    height: 3rem;
}

#guess:disabled {
  background-color: var(--green);
  cursor: not-allowed; 
  opacity: 0.5;
}

#country-input {
    flex-grow: 1;
    border-radius: 0.5rem;
    border: 0.1rem, solid, var(--green);
    padding-left: 1rem;
}



