body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #e9e8e1;
    text-align: center;
}

.container {
    color: rgba(11, 1, 1, 0.791);
    width:95%;
    margin: 10px auto;
    border: 4px inset #f64fd6;
    padding: 15px;
    background: #eeeae0f3;

    display: grid;
    grid-template-areas:
        "topbar topbar"
        "main sidebar";
    grid-template-columns: 2fr 1fr;
    gap: 10px;
}

.topbar {
    grid-area: topbar;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #43d1bf;
    font-size: 36px;
    padding: 10px;
    border-radius: 30px;
    border: 12px outset #f64fd6;
}

.brand {
    color: rgb(13, 4, 1);
    font-weight: bold;
}

.title {
    color: rgb(7, 2, 0);
    font-weight: bold;
}

.search {
    padding: 5px 10px;
    border-radius: 20px;
    border: 1px solid #f64fd6;
}


.main {
    grid-area: main;
    background: #ccc;
    display: flex;
    justify-content: center;
    align-items: center;
    height:800px;
}


.sidebar {
    grid-area: sidebar;
    background: #d6d1d1;
    padding: 10px;
    border: 3px inset #f64fd6;
}

.scroll-box {
    border: 1px solid #f64fd6;
    margin-bottom: 10px;
    display:flex;
    align-items: center;
    justify-content: center;
}

.state {
    margin-bottom: 10px;
}

.list {
    height: 200px;
    overflow-y: scroll;
    border: 1px solid #f64fd6;
    padding: 5px;
    text-align: left;
    font-size:28px;
     font-family: Arial;
    margin-top: 100px;
}

.list ul {
       display:flex;
       flex-flow:column;
}

.list div {
    margin: 4px auto;
}


.description {
    grid-area: description;
    background: #ddd;
    padding: 15px;
}


.subbox {
    grid-area: subbox;
    background: #ddd;
    padding: 10px;
    font-size: 14px;
}


.ads {
    grid-area: ads;
    background: #ccc;
    padding: 15px;
    display: flex;
    justify-content: space-around;
}


footer {
    margin-top: 15px;
    color: rgb(14, 1, 7);
}

#map {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    border: 7px ridge #000000;
}

#logo {
    width: 80px;
    height: auto;
}

#city_select{
    height: 60px;
    width: 120px;
}
.state {
    margin-bottom: 10px;
    margin-top: 100px;
    margin-inline-end: 150px;
    height: 60px;
    width: 90px;
    justify-content: center;

}



