body{
  margin: 0;
  background-size: cover;
  background-color: #181818;
}
.container{
  max-width: 86%;
  margin: auto;
  position: relative;
  padding: 100px 0;
  height: calc(100vh - 200px);
  display: flex ;
  flex-direction: column;
  justify-content: space-around;
}
header{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  .btn{
    border-radius: 8px;
    background-color: #fff;
    text-align: center;
    padding: .1em .8em;
    font-size: 18px;
    font-weight: bold;
    width: 140px;
    color: #DFB728;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    .icon{
      margin-right: .4em;
    }
  }
}
.card-wrapper{
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 24px;
  a.card{
    text-decoration: none;
  }
  a.card:hover,
  a.card:active,
  a.card:visited {
    color: unset;
  }
  .card{
    width: 150px;
    border-radius: 12px;
    background-color: #fefefe;
    padding: 1.5em;
    cursor: pointer;
    .icon{
      height: 65px;
      width: 65px;
background: rgba(255, 255, 255, 0.2);
      border-radius: 50%;
      display: flex ;
      justify-content: center;
      align-items: center;
      margin-bottom: 18px;
    }
    &.small .title{
      font-size: 1.5em;
      font-weight: bold;
      color: #fff;
      &::after{
        content: "";
        width: 3em;
        height: 3px;
        background-color: rgba(255, 255, 255, 0.5);
        display: block;
        margin-top: 30px;
      }
    }
  }
  .card.big{
    width: 230px;
    .title{
      font-size: 1.5em;
      margin-bottom: 3.1em;
      color: #000;
    }
    .btn-wrapper{
      display: flex;
      justify-content: flex-end;
    }
    .btn{
      border-radius: 4px;
      background-color: #1D9D9A;
      color: #fff;
      text-align: center;
      padding: .5em .9em;
      font-size: 1.1em;
      width: 90px;
    }
  }
}
footer{
  text-align: center;
  color: #fff;
  padding: 14px;
  position: fixed;
  bottom: 0;
  width: 100%;
  a{
    color: #fff;
  }
  a:hover{
    color: rgba(77, 167, 227);
  }
}
@media (max-width: 576px) {
  body{
  }
  .container{
    max-width: unset;
    height: unset;
  }
  header{
    justify-content: center;
    gap: 32px;
    margin-bottom: 32px;
  }
  .card-wrapper{
    justify-content: center;
    .card.big,
    .card.small{
      width: 60%;
    }
  }
  footer{
    position: relative;
    bottom: unset;
    padding: 24px 0;
  }
}
