body, html {
    margin: 0;
    padding: 0;
}

header{
    height: 90vh;
    overflow: hidden;
}

.animals {
    display: flex;
}

#animals-circkels {
    display: flex;
    margin-left: 15vw;
    gap: 10px;
    flex: 2;
}

.animal-cirkel {
    width: 50px;
    height: 50px;
    background-color: #6e9b42;
    border-radius: 50%;
    overflow: hidden;
}

.cirkle-img{
    scale: 100%;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.map {
    display: flex;
    margin: 10px 5vw 0 5vw;
}

#chartdiv {
    flex: 2;
}

#animal {
    flex: 1;
    align-items: center;
    display: flex;
    flex-direction: column;
    position: relative;
    top: -6vh;
}

.animalname {

}

#animalinfo {
    width: 25vw;
    height: 85vh;
    /*background-color: #6e9b42;*/
    border: 1px solid white;
    flex: 1;
    padding: 0.2vw;
}

.info-img{
    object-fit: cover;
    /*height: 20%;*/
    width: 100%;
}

