@font-face {
  font-family: mark;
  font-style: normal;
  src: url('assets/fonts/MarkProBook.woff2') format('woff2');
  font-display: swap;
}

@font-face {
  font-family: mark;
  font-weight: bold;
  src: url('assets/fonts/MarkProBold.woff2') format('woff2');
  font-display: swap;
}

body {
  font-family: 'mark';
  background-color: #f2f2f2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  line-height: 26px;
  font-size: 14px;
}

.container {
  padding: 48px;
  max-width: 600px;
  background-color:  white;
  border-radius: 8px;
  box-shadow: 0px 10px 9px 1px rgba(0, 0, 0, 0.16)
}

h4 {
  margin: 0;
}

a {
  color: #4D9F9A;
}

.title {
  display: flex;
  align-items: center;
  gap: 16px;

  .title-icon {
    display: block;
    height: 72px;
    width: 72px;
  }
}

.info {
  display: flex;
  flex-direction: column;
  text-align: left;
  margin-bottom: 48px;
}

.actions-wrapper {
  display: flex;
  flex-direction: row;
  
  .actions {
    display: flex;
    width: 100%;
    flex-direction: row;
    justify-content: space-between;

    .action {
      display: flex;
      flex-direction: row;
      line-height: normal;
      gap: 16px;
      
      .action-icon-box {
        display: block;
        background-color: #C1DDDB;
        border-radius: 8px;
        height: 48px;
        width: 48px;
      }
      
      .action-text {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 4px;
      }
    }
  }
}

.icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.icon svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  margin: 8px;
}

.title-icon .icon svg {
  margin: 0;
}

.logo {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

@media (max-width: 600px) {
  .actions-wrapper {
    flex-direction: column;
  }

  .actions {
    flex-direction: column !important;
    gap: 24px;
  }

  .action {
    flex-direction: column;
    align-items: center;
  }

  .action-icon-box {
    width: 64px;
    height: 64px;
  }

  body {
    padding: 24px;
  }

  .container {
    padding: 24px;
    max-width: 100%;
  }
}