body {
    background-color: rgb(143, 255, 237);
    height: 100%;
    overflow-x: hidden;
}

.title {
    width: 100%;
    background: radial-gradient(rgb(60, 15, 232), rgb(90, 150, 234), rgb(143, 255, 237), rgb(143, 255, 237), rgb(143, 255, 237));
    padding: 5px;
    text-align: center;
    color: rgb(255, 227, 194);
}

input {
    width: 60px;
    margin-left: 3px;
}

footer {
    padding-left: 2em;
    text-align: left;
    color: rgb(60, 15, 232);
    font-size: smaller;
    font-weight: 500;
    overflow-y: hidden;
    width: 100%;
}

.flag {
    position: absolute;
    top: 7px;
    right: 0px;
}

.flag img {
    width: 70%;
    height: 70%;
    border-radius: 5px;
    border: 2px solid rgb(60, 15, 232);
}

.flag img:hover{
    border-color: rgb(143, 255, 237);
    cursor: pointer;
}

button {
    cursor: pointer;
}

.modal {
    position: fixed;
    z-index: 900;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(255, 227, 194, 0.8);
}

.modal-content {
    color: rgb(60, 15, 232);
    background-color: rgb(143, 255, 237);
    margin: 100px auto;
    padding: 20px;
    border: 3px solid rgb(60, 15, 232);
    width: 500px;
    max-width: 80%;
}

.close {
    color: rgb(255, 227, 194); 
    float: right;
    background-color: rgb(60, 15, 232);
    border-radius: 15px;
    padding: 2px 7px;
    font-size: 11px;
    font-weight: bold;
    margin-top: -9px;
    margin-left: -9px;
}

.close:hover,
.close:focus {
    background-color: rgb(143, 255, 237);
    color: rgb(60, 15, 232);
    text-decoration: none;
    cursor: pointer;
}
