* {
    box-sizing: border-box;
    margin: 0 auto;
}

.main-container {
    background-size: cover;
    background-position: center;
    background-color: honeydew;
}

#city, #coord{
  bottom: 0; /* At the bottom. Use top:0 to append it to the top */
  background: rgb(0, 0, 0); /* Fallback color */
  background: rgba(0, 0, 0, 0.5); /* Black background with 0.5 opacity */
  color: #f1f1f1; /* Grey text */
  width: 100%; /* Full width */
  padding: 10px;
}

#coord {
    width: 50%;
    margin-top: 20px;
}

#refresh i {
    color: black;
    cursor: pointer;
}

.search-container, .changing-panel {
    display: flex;
    flex-wrap: wrap;
}

button, select {
    border: 2px solid black;
    font-size: 15px;
    padding: 10px;
    border-radius: 10%;
    font-weight: bold;
}

#refresh {
    margin: 20px 5px;
}

select {
    background-color: rgb(226, 226, 226);
    padding: 15px;
    margin: 20px 10px;
}

#farancheit, #celcius {
    margin: 20px 1px;
}

.searchControl {
    margin-top: 20px;
}

#searchInput {
    padding: 10px;
    font-size: 15px;
}

#searchBtn {
    font-size: 15px;
    text-transform: uppercase;
    font-weight: bold;
    margin: -4px;
    border-radius: 0;
    padding: 11px;
}

button:hover {
    cursor: pointer;
    background-color: darkkhaki;
    font-weight: bold
}

#weather-container {
    margin: 20px 80px 0 80px;
}

#feels-temperature {
    font-size: 70px;
}

.column {
    float: left;
    width: 50%;
    flex: 50%;
    padding: 10px;
  }


  .row {
    display:flex;
  }

h2, h1 {
    font-size: 50px;
    display: inline;
}

#city, .map-container {
    flex-basis: 50%;
    text-align: center;
}

#date {
    font-size: 22px;
}

#feels-temperature, .weather-icons {    
    text-align: center;
    display: inline;
}

#feels-temperature {
    margin-left: 50px;
}

#wind, #humidity, #pressure {
    font-size: 20px;
}

#map {
    width: 90%;
    height: 350px;
    border: 3px solid black;
}

#map-container {
    display: flex;
}

img {
    width: 100px;
}

#long, #lat {
    font-size: 22px;
    color: white;
}

#days-weather {
    display: flex;
    justify-content: center;
    padding-top: 30px;
    padding-bottom: 10px;
}

#days-weather p {
    font-size: 20px;
    font-weight: bold;
    text-align: center;
}

#day1, #day2, #day3{
    margin: 0 20px;
    border: 1px solid black;
    background-color: hsla(43, 39%, 100%, 0.3);
    border-radius: 5%;
    padding: 7px;
}