@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500&display=swap');
 
:root {
    --orange: #EE7402;
    --dark-green: #166818;
    --light-green: #13aa00;
    --grey: #808080;
    --red: #D60000;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
}


main{
    display: flex;
    flex-direction: column;
    margin-top: 150px;
    margin-bottom: 150px;
    width: 1400px;
}

.maps{
    display: flex;
    gap: 30px;
    margin: 50px;
}

.mapframe{
    width: 48%;
    height: 450px;
    border: 0px;
}

main h1 {
    margin-bottom: 32px;
}

main li {
    width: 600px;
    margin-top: 16px;
}



.title{
    text-align: center;
    margin-bottom: 15px;
}

#list{
    list-style-type: circle;
    margin-left: 55px;
}
