:root {
    --sea: #BAD7F2;
    --ground: #C49792;
    --selected: #9D91A3;
    --selected: #645244;
    --visited: #739E82;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-align: center;
    color: black;
    font-family: 'Sour Gummy', 'Saira Condensed';
}

body {
    background-color: var(--sea);
    overflow-x: hidden;
    overflow-y: hidden;
}

.container {
    padding: 2%;
    width: 100%;
    position: absolute;
}

svg {
    zoom: 130%;
    width: 100vh;
    height: 150%;
    fill: var(--ground);
}

svg path:hover {
    cursor: pointer;
    fill: var(--selected);
}

.data-container {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.properties-of-country {
    width: 50%;
    height: 50%;
    position: absolute;
    display: grid;
    grid-template-columns: repeat(3fr);
    gap: 10px;
}

.rowbox {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.box {
    width: 150px;
    height: 100px;
    background-color: grey;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    /* IMPORTANT */
}

#close {
    color: red;
    font-size: 30px;
    position: absolute;
    right: 5px;
    top: 0;
}

#close:hover {
    cursor: pointer;
    color: white;
    background-color: red;
}

a {
    color: white;
    text-decoration: none;
}

.hidden {
    display: none;
}

#flag {
    width: 100%;
    border-radius: 8px;
}

.visited {
    fill: var(--visited);
}