@import 'https://fonts.googleapis.com/css?family=Roboto:300,400,500';

body {
    font-family: "Roboto", "Helvetica", "Arial", sans-serif;
    background: #222;
    /* background-image: url("./images/weather.jpg"); */
    background-image: url('https://source.unsplash.com/1600x900/?landscape'); /*random image after every web refreash*/
  }

  .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: white; /* black see through background*/
    opacity: 0.6;
    color: black;
    margin: 20px auto;
    padding: 20px;
    border-radius: 30px;
    width: 100%;
    max-width: 420px;
  }

.weather-today {
  text-align: center;
}

h1 {
  font-size: 40px;
}



.forecast-card { 

    display: flex;
    margin: 20px auto;
    padding: 20px;
    background-color: white;
    border-radius: 20px;
    /* box-shadow: 0 2px 10px rgba(66, 63, 63, 0.718); */
    max-width: 500px;
    
  }

.forecast-category {
    display: flex;
    flex-direction: column;
    padding: 20px;
    column-gap: 10px;
    row-gap: 10px;
    justify-content: space-around;
    color: black;
    font: inherit;
}




@media (min-width: 767px) {

  body {
    display: flex;
    justify-content: center;
  }

  .container {
    width: 400px;
    height: 700px;
    border: 1px solid black;
    border-radius: 10px;
    margin-top: 20px;  
  }
}

.gif-icon {
  width: 90%;
  max-width: 50px;
}