*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.container{
   
    display: flex;
    flex-direction: row;
    
  width: 100%;
  height: 800px;
  margin: auto;
  align-items: center;
  justify-content: space-evenly;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.kml{
    width: 50%;
    height: 700px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-left: 10px;
}

.map{
    display: flex;
    width: 45%;
    height: 700px;
    border: 1px solid black;
}




.content{
height: 80%;
width: 100%;
padding-left: 10px;
padding-right: 10px;

}

.content textarea{
    height: 100%;
    width: 100%;
    background-color: rgb(3, 4, 43);
color: #fcfcfc;
}

.download{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}


.download input{
    width: 200px;
    height: 50px;
    border-radius: 10px;
    border:1px solid gray;
    transition: 0.2s ease-in;
    background-color: rgb(178 4 11);
    color: white;
    
}


.download input:hover{
    background-color: rgb(248, 18, 5);
    color: white;
}

/* .highlight{
    background-color: yellow;
} */