@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

body {
  margin: 0;
}

a {
  font-family: Arial;
  color: #1A1A1A;
  text-decoration: none;
}

.ad {
  position: relative;
  background: white;
  box-sizing: border-box;
  border: 1px solid #E1E1E1;
  height: 250px;
  width: 300px;
  cursor: pointer;
}

.logo {
  animation: fadein 2s linear forwards;
  animation-delay: 0.5s;
  opacity: 0;
  margin: 24px 0 0 24px;
}

h1 {
  animation: fadein 2s linear forwards;
  animation-delay: 0.5s;
  opacity: 0;
  font-family: Arial;
  font-weight: bold;
  font-size: 22px;
  display: flex;
  align-items: left;
  margin: 16px 24px 16px 24px;
  padding: 0;
}

.CTA {
  animation: fadein 2s linear forwards;
  animation-delay: 0.5s;
  opacity: 0;
  width: 154px;
  line-height: 40px;
  padding: 0;
  position: absolute;
  left: 24px;
  bottom: 32px;
  font-family: Arial;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  outline: none;
  border: none;
  background: #00248B;
  border-radius: 100px;
  color: white;
  cursor: pointer;
}