.addressBar {
    height: 200px;
    width: 100vw;
    background: linear-gradient(to top,
        rgba(0, 0, 0, 0.9),
        rgba(0, 0, 0, 0.205),
        rgba(59, 59, 59, 0.04));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
  }

  .addressBar div:nth-child(1) {
    width: 100%;
    display: flex;
    padding: 0px 90px;
    justify-content: space-around;
    align-items: center;
    visibility: hidden;
  }

  .addressBar div:nth-child(1) a img {
    height: 20px;
  }

  .addressBar div:nth-child(2) {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px 0px 10px 0px;
    font-size: 22px;
  }
  @media only screen and (max-width: 600px){
  .addressBar div p {
    font-size: 15px;
  }
  .addressBar div:nth-child(1) {
    visibility: visible;
  }
  }