 

@media only screen and (min-width: 1024px) {
  main p {
    font-size: 2rem;
  }
}

.cd-top {
    position: fixed;
    bottom: 15px;
    right: 20px;
    display: inline-block;
    z-index: 99;
    border: none;
    outline: none;
    background-color: #82B457;
    color: #FFF;
    cursor: pointer;
    padding: 15px;
    border-radius: 5px;
    width: 40px;
    height: 40px
}

 .cd-top::before {
    content: "\F115";
    font-family: "bootstrap-icons";
    font-size: 24px;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%
}

  
@media only screen and (min-width: 768px) {
  .cd-top {
    right: 20px;
    bottom: 10px;
  }
}

@media only screen and (min-width: 1024px) {
  .cd-top {
    height: 60px;
    width: 60px;
    right: 30px;
    bottom: 10px;
  }
}



 