:root {
  --neon-yellow: #e3ff4d;
  --black: #000;
  --beige: #f0ebe3;
  --white: #fff;
  -webkit-font-smoothing: antialiased;
}



body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--black);
  box-sizing: border-box;
   font-weight: 500;
   letter-spacing: -0.5px;
}

body {
    font-size: 1.0256410256410258vw;
}

/* Min Font Size */
@media screen and (max-width:1080px) {
    body {
        font-size: 13.876923076923077px;
    }
}



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

h1 {
  letter-spacing: -1px;
  line-height: 1;
  margin:0;
  padding:0;
  font-size: 2em;
}

p {
  margin: 0;
  padding: 0;
  font-size: 1em;
  line-height: 1.2;
}

p.large {
  font-size: 1.1em;
  text-align: center;
}

p.faded {
  opacity: .6;
}

p.small {
  font-size:.8em;
  text-transform: uppercase;
}

span {
    font-size:1em;
}

/* Header ticker */
.ticker {
  background: var(--white);
  overflow: hidden;
  white-space: nowrap;
  position: absolute;
  top:0;
  width:100vw;
  z-index: 99;
  padding: .75rem 0;
}

.ticker-content {
  display: inline-block;
  animation: scroll 30s linear infinite;
  font-size:.9rem;
}



@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Layout */
.container {
  display: flex;
  box-sizing: border-box;
}


section {
  width:100%;
  position: relative;
  height:100vh;
  padding: 4rem 1rem 2.25rem;
  flex-flow: column;
  flex:1 0 0;
  display: flex; 
  overflow: hidden;
  box-sizing: border-box;
  place-content: flex-start space-between;
}

.section-1 {
  background: var(--neon-yellow);
}

.section-2 {
  padding:0;
}

.section-3 {
  background: var(--beige);
}

img {
  display:block;
  object-position:center;
  object-fit:contain;
  margin:auto;
  height:100%;
  width: 100%;
}



.section-1__bottom {
  padding-right:2rem;
  display: flex;
  align-items: flex-start;
  gap:1.5rem;
  flex-flow: column;
}

.logo-image-container {
  width:100%;
  height:100%;
  max-height: 12em;
  position: relative;
}

.section-3__bottom {
  background:#fafafa;
  padding:1rem;
  display: flex;
  flex-flow: column;
  gap:1.5rem;
  box-sizing: border-box;
  width: 100%;
}

.bottom-inner-container {
  display: flex;
  justify-content: space-between;
}

.some-container {
  display: flex;
  gap:.5rem;
}

.thanks {
  margin-top: 1.5rem;
  font-weight: 500;
}

.btn {
  background: transparent;
  border: 1px solid var(--black);
  padding: 0.6rem 1.2rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--black);
  border-radius: 30px;
  transition: all 0.2s ease;
}

.btn:hover {
  background: var(--black);
  color: white;
}


/* Footer */
footer {
  text-align: center;
  padding: 1.5rem;
  font-size: 0.9rem;
  background: var(--beige);
}

footer a {
  color: var(--black);
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}



@media screen and (max-width:1080px) {
  .container {
    display: flex;
    flex-flow: column;
    height:auto;
    gap:1em;
            gap: .5rem;
        padding: 0 .5rem;
  }
  section {
    flex: 0 0 auto;
  }
  .section-1 {
    max-height:60vh;
  }
    .section-2 {
    max-height:40vh;
  }
  .section-3 {
    height:fit-content;
    align-items: center;
    gap:4em;
    padding: 2.25rem 1rem 2.25rem;
  }
  .logo-image-container {
    max-width:8em;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}