@media only screen and (max-width: 536px) {
    :root {
        font-size: 9px;
    }
    
    .pay__links {
        flex-direction: column !important;
    }
    .pay__links a {
        margin-top: 1rem !important;
        text-align: center;
        background: #52bf52;
        border: none !important;
        color: #fff;
        font-size: 2rem;
        font-weight: bold;
        padding: 2.5rem 2.5rem;

    }
    main {
        padding: 15px;
    }
    .crypto p {
        font-family: monospace;
        font-size: 1.8rem;
    }
}
@media only screen and (max-width: 396px) {
    :root {
        font-size: 7px;
    }

    main {
        padding: 25px !important;
    }
    .pay__links a {
        margin-top: 1rem !important;
        text-align: center;
        background: #52bf52;
        border: none !important;
        color: #fff;
        font-size: 2rem;
        font-weight: bold !important;
        padding: 2.5rem 2.5rem !important;

    }
    .crypto p {
        font-family: monospace;
        font-size: 1.8rem !important;
    }
    .copylink--success {
        font-size: 1.4rem;
    
    }
}

@media only screen and (max-width: 320px) {
    .crypto p {
        font-family: monospace;
        font-size: 1.4rem !important;
    }
}
body {
    font-family: sans-serif;
    color: #565656;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px;
}

h1 {
    font-size: 3rem;
    width: 100%;
    text-align: center;
}
h3 {
    margin-block-end: 0;
    margin-block-start: 0;
    font-size: .8rem;
    text-transform: uppercase;
}
p {
    margin-block-end: 0;
    margin-block-start: 0;
}

a:hover, .crypto:hover {
    color: green;
    text-decoration: underline;
    cursor: pointer;
}

a {
    color: #565656;
    text-decoration: none;
}
.pay {
    background: white;
    max-width: 450px;
    width: 100%;
    padding: 20px;
    border-radius: 15px;
    border: #86f186 solid 2px;
}

.pay__links {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.pay__links a {
    border: solid 1px #9e9d9d;
    padding: 1rem 1.5rem;
    border-radius: 4px;
    text-align: center;
    background: #52bf52;
    border: none !important;
    color: #fff;
    box-shadow: 1px 1px 4px rgba(0,0,0,0.3);
    text-transform: uppercase;
    font-weight: 100;
    transition: all ease-in-out .2s;
}
.pay__links a:hover {
    transform: scale(1.05);
    box-shadow: 1px 2px 8px rgba(0,0,0,0.2);


}
.pay ul {
    margin-block-start: 0;
    padding-inline-start: 0;
}
.pay li {
    list-style-type: none;
    font-size: 1.2rem;
    margin-block-start: 20px;
    padding-bottom: 5px;
}

.crypto {
    border-bottom: 1px solid gray;
}
.crypto p {
    font-family: monospace;
    font-size: 1.4rem;
}
.crypto h3 {
    font-size: 1rem;
}
.dollhair {
    font-size: 1.2rem;
    color: #86f186;
}
.copylink--success{
    padding-top: .4rem;
    color: #86f186;
    font-size: 1.2rem;

}

@keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translate3d(0, 100%, 0);
    }
  
    to {
      opacity: 1;
      transform: translate3d(0, 0, 0);
    }
  }
  
  .fadeInUp {
    animation-name: fadeInUp;
  }
  .animated {
    animation-duration: 1s;
    animation-fill-mode: both;
  }