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

html
{
  overflow: hidden;
}

body
{
  width: 100%;
  height: 100vh;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

main
{
  max-width: 300px;
  min-height: 20vh;
  padding: 5px;
  margin: 50px auto;
  background-image: linear-gradient(45deg, #3d72b4, #649ee5);
  color: #fdfdfd;
  border-radius: 20px;
  box-shadow: 1px 5px 10px rgba(0, 0, 0, 0.386);
}

.header-container
{
  width: 100%;
  text-align: center;
}

.input-title
{
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.input-container
{
  width: 200px;
  margin: auto;
  border-bottom: 1px solid #fff;
}

.input-container input
{
  text-align: center;
  height: 30px;
  border: none;
  margin-bottom: 20px;
  border-radius: 3px;
  border-bottom: 1px solid #fff;
  box-shadow: 1px 5px 5px rgba(0, 0, 0, 0.302);
}

.input-container button
{
  height: 30px;
  width: 30px;
  border: none;
  color: #fdfdfd;
  background-color: #3d72b4;
  border-radius: 3px;
  cursor: pointer;
  transition: 0.3;
  box-shadow: 1px 5px 5px rgba(0, 0, 0, 0.302);
}

.input-container button:hover
{
  transform: scale(1.03);
}

.content-container
{
  border-top: 1px solid #fff;
}

.city-title-container
{
  width: 100%;
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
}

.city-title
{
  padding: 5px;
  margin-top: 20px;
  margin-bottom: 30px;
  font-size: 2em;
}

.city-details
{
  margin-left: 20px;
}

.address, .district, .state
{
  margin-bottom: 10px;
  font-size: 1em;
}

.hide{
  display: none;
}