@media screen and (min-width: 37.5em) {
  #top {
    width: 70px;
    line-height: 70px;
    overflow: hidden;
    z-index: 999;
    display: none;
    cursor: pointer;
    position: fixed;
    bottom: 50px;
    right: 0;
    background-color: ghostwhite;
    color: #202d3f;
    text-align: center;
    font-size: 50px;
    text-decoration: none;
  }
  #top:hover {
    background-color: ghostwhite;
    color: #b8b8b8;
    transition: 0.3s;
  }
}
@media screen and (min-width: 64em) {
#top {
  width: 45px;
  line-height: 45px;
  overflow: hidden;
  z-index: 999;
  display: none;
  cursor: pointer;
  position: fixed;
  bottom: 50px;
  right: 0;
  background-color: ghostwhite;
  color: #202d3f;
  text-align: center;
  font-size: 35px;
  text-decoration: none;
}
#top:hover {
  background-color: ghostwhite;
  color: #b8b8b8;
  transition: 0.3s;
}
}
@media screen and (min-width: 100em) {
  #top {
    width: 45px;
    line-height: 45px;
    overflow: hidden;
    z-index: 999;
    display: none;
    cursor: pointer;
    position: fixed;
    bottom: 50px;
    right: 0;
    background-color: ghostwhite;
    color: #202d3f;
    text-align: center;
    font-size: 35px;
    text-decoration: none;
  }
  #top:hover {
    background-color: ghostwhite;
    color: #b8b8b8;
    transition: 0.3s;
  }
  }