@import url("https://fonts.googleapis.com/css2?family=Alata&display=swap");

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Alata", sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: #f1f1f1;
}

nav {
    text-align: center;
    background-color: #39b078;
    padding: 1em;
}

nav h1 {
    margin: 0;
    font-size: 3em;
    letter-spacing: 2px;
    color: white;
}

footer {
    padding: 1em;
    background-color: #2a3339;
    color: white;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.container {
    flex: 1;
    display: flex;
    justify-content: center;
}

.description {
    background-color: #D9E9BB;
    flex: 1;
    margin: 1em 2em;
    border: #39b078 solid 0.5em;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    padding: 1em;
}

.map {
    flex: 2;
    margin: 1em 0;
    padding: 0.5em 0;
}

[id="Shetland Islands"] {
    outline: 2px solid black;
    outline-offset: 10px;
}
