/* General resets */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  width: 100%;
  font-family: 'Texta','Lato',Verdana,Arial,Helvetica,sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

.ad-wrapper {
  width: 160px;
  height: 600px;
  border: 1px solid #b7b7b7;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
}

.video-container {
  width: 100%;
  height: 300px; /* top half */
  overflow: hidden;
}

video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content-wrapper {
  width: 100%;
  height: 300px;
  background-color: #f7f7fa;
  display: flex;
  justify-content: center;
  align-items: center;
}

.content-container {
  position: relative;
  display:flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 10px 15px 23px 15px;
  width: 100%;
  height: 100%;
  background-color: #f7f7fa;
  z-index: 1;
  text-align: center;
}

.swoosh {
  position: absolute;
  top: -25px;
  left: 0;
  width: 160px;
  height: 25px;
  z-index: 0;
  pointer-events: none;
}

.logo {
  max-width: 85px;
  height: auto;
  align-self: center;
}

.headline {
  font-size: 1.375rem;
  line-height: 1.313rem;
  font-weight: 500;
  letter-spacing: .03em;
  color: #4a0dcd;
}

.copy-body {
  font-size: 0.938rem;
  line-height: 1rem;
  letter-spacing: .03em;
  color: #555555;
  padding-bottom:.5rem;
}

.button-lny {
  padding: 6px 14px;
  background-color: #4a0dcd;
  color: white;
  text-decoration: none;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .12em;
  border-radius: 40px;
  text-transform: uppercase;
  cursor: pointer;
  z-index:2;
}

.click-tag-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  display: block;
}

