body, html {
    width: 100%;
    height: 100%;
    background-color: grey;
    display: flex;
    align-items: center;
    flex-direction: column;
    position: relative;
}

input[type="text"] {
    font-size: 1em;
}

.title{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

h1{
    font-family: Impact;
    letter-spacing: 10px;
    color: orange;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: black;
    margin-bottom: -25px;
}

.input {
    box-sizing: border-box;
    height: 3.125em;
}

.header {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.button {
    height: 3.125em;
    width: 6.250em;
    margin: 0.625em;
    background-color: blue;
    color: white;
    text-align: center;
    border: 2px solid black;
    border-radius: 5px;
}
.button:hover {
    background-color: orange;
    color: black;
}

.show {
    display: block;
}

.hide{
    display: none;
}

summary {
    border: 4px solid transparent;
    outline: none;
    padding: 1rem;
    display: block;
    background: #444;
    color: white;
    padding-left: 2.2rem;
    position: relative;
    cursor: pointer;
    width: 200px;
  }
  details {
    margin-top: 5px;
    background: white;
  }
  details summary::-webkit-details-marker {
    display:none;
  }
  details[open] > summary:before {
    transform: rotate(90deg);
  }
  summary:before {
    content: '';
    border-width: .4rem;
    border-style: solid;
    border-color: transparent transparent transparent #fff;
    position: absolute;
    top: 1.3rem;
    left: 1rem;
    transform: rotate(0);
    transform-origin: .2rem 50%;
    transition: .25s transform ease;
  }
  
  .content {
    width: 200px;
    border-top: none;
    padding: 10px;
    
    border-top: none;
    
  }
  
  p {
    margin: 0;
    padding-bottom: 10px;
    
  }

  .dropdown{
    display: none;
  }

  @media only screen and (max-width: 550px) {
    .dropdown{
      display: block;
    }
    .header{
      display: none;
    }
    .input-box{
      display: flex;
      justify-content: center;
    }
    .input {
      box-sizing: border-box;
      height: 2em;
    }
    
    .button-sm {
      /* height: 3.125em;
      width: 6.250em; */
      margin: 0.625em;
      background-color: blue;
      color: white;
      text-align: center;
      border: 2px solid black;
      border-radius: 5px;
    }

	label{
	font-family: Impact;
    color: orange;
    -webkit-text-stroke-width: 0.1px;
    -webkit-text-stroke-color: black;
	}
}