/* 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: 300px;
  height: 600px;
  background-color: #f7f7fa;
  border: 1px solid #b7b7b7;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
}

.video-container {
  width: 100%;
  height: 300px;
  overflow: hidden;
  border-bottom-left-radius:50% 8%;
  border-bottom-right-radius:50% 8%;
}

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

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

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

.row-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo-container {
  display: flex;
  justify-content: flex-start;
}

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

.text-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-top:10%;
}

.headline {
  font-size: 2rem;
  line-height: 2rem;
  margin-bottom: 15px;
  font-weight: 500;
  letter-spacing: .03em;
  color: #4a0dcd;
}

.copy-body {
  font-size: 1.188rem;
  line-height: 1.438rem;
  letter-spacing: .03em;
  color: #555555;
}

.cta-container {
  display: flex;
  justify-content: flex-end;
}

.button-lny {
  padding: 8px 16px;
  background-color: #4a0dcd;
  color: white;
  text-decoration: none;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .12em;
  border-radius: 40px;
  text-transform: uppercase;
  transition: background-color 0.3s ease;
}

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