main{
    margin-top: 30px;
    justify-items: center;
}

.roadmap{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    grid-template-rows: repeat(3,57vh);
    gap: -100px;
    justify-content: center;
    text-align: flex-start;
    width: 100%;
    row-gap: 1px;
}

.info{
    max-width: 27vw;
    text-align: start;
    justify-self: center;
    align-self: center;
    background-color: transparent;
}

.title{
    color: #3467c5;
    background-color: transparent;
}

.r-title{
    display: flex;
    margin-top: 13vh;
    justify-content: center;
    font-size: 45px;
    color: #bdd4fe;
}

.content{
    margin-top: 30px;
    color: #c3baaf;
    font-family: "Courier New", monospace;
}

h1{
    color: #e8e2db;
}

.img{
    height: 40vh;
    width: 17vw;
    justify-self: center;
    align-self: center;
    border-radius: 16px;
}

.btc{
    margin-top: 35px;
    height: 40px;
    width: 100px;
    border: 1px solid #0e3b20;
    background-image: url(imgs/btc.png);
    background-size: 100% 100%;
    border: none;
    outline: none;
    position: relative;
    background-color: transparent;
    color: transparent;
    cursor: pointer;
}

.btc:hover{
    cursor: pointer;
}


@media (hover: hover) {
    #creditcard {
      /*  set start position */
      transform: translateY(110px);
      transition: transform 0.1s ease-in-out;
      /*  set transition for mouse enter & exit */
    }
  
    #money {
      /*  set start position */
      transform: translateY(180px);
      transition: transform 0.1s ease-in-out;
      /*  set transition for mouse enter & exit */
    }
  
    button:hover #creditcard {
      transform: translateY(0px);
      transition: transform 0.2s ease-in-out;
      /*  overide transition for mouse enter */
    }
  
    button:hover #money {
      transform: translateY(0px);
      transition: transform 0.3s ease-in-out;
      /*  overide transition for mouse enter */
    }
  }
  
  /* styling */
  
  
  .button {
    border: none;
    outline: none;
    position: relative;
    background-color: transparent;
    color: transparent;
    cursor: pointer;
    margin-top: -70px;
    margin-left: 140px;
  }
  
  .button__svg {
    height: 70px;
  }



@media  (max-width: 1103px ){
    .roadmap{
        display: grid;
        grid-template-columns: repeat(1,1fr);
        grid-template-rows: repeat(5,57vh);
    }

    .r-title{
      margin-top: 17vh;
    }
    .button {
        margin-top: 0px;
        margin-left: 0px;
      }
    
.info{
    max-width: 70vw;
    text-align: center;
}
    .title{
      margin-top: 4vh;
    }
    .img{
        height: 40vh;
        width: 75vw;
    }

    #img-3{
      margin-top: 10vh;
    }

    nav{
        position: absolute;
        top: 1px;
      }


}
