body {
    background: url(images/background.jpg);
    /* background-size: cover; */
    overscroll-behavior-y: none;
}

/* rectangles */
div.rectangle {
    background: white;
    border-radius: 40px;
    border: 1px solid black;
    position: fixed;
}

.rectangle canvas {
    border-radius: 40px;
    /* width: 100%; */
}

div#rectangle1 {
    width: 300px;
    height: 150px;
    top: 75px;
    right: 75px;

    font-family: "ellograph-cf", monospace;
    font-weight: 300;
    font-style: normal;
    letter-spacing: -1px;
    text-align: left;
    padding-left: 25px;
    padding-top: 25px;
    padding-right: 25px; 
}

p {
    margin: 0;
    padding: 0;
}

span.countryName {
    font-weight: 800;
    left: 50px;
}

div#rectangle2 {
    width: 350px;
    height: 300px;
    bottom: 125px;
    right: 75px;
}


/* buttons */
div#button-container {
    bottom: 35px;
    left: 0px;
    right: 0px;
    position: fixed;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 30px;
}

div.button {
    background: white;
    border-radius: 40px;
    border: 1px solid black;
    width: 180px;
    padding: 0.3em;

    font-family: "ellograph-cf", monospace;
    font-weight: 400;
    font-style: normal;
    letter-spacing: -1px;
    text-align: center;

    cursor: pointer;
}


/* map */
div#map {
    width: 50vw;
}

html {
    height: auto;
    overflow: auto;
}