/*
 * Fix
 * Version 0.1.1
 * https://github.com/jaydenseric/Fix
*/
html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: transparent;
}
body {
  margin: 0;
  line-height: 1;
  font-family: sans-serif;
}
iframe {
  border: 0;
}
main {
  display: block;
}
ul,
ol {
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
}
li {
  display: block;
}
dl {
  margin-top: 0;
  margin-bottom: 0;
}
dd {
  margin-left: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: inherit;
}
blockquote {
  margin: 0;
  padding: 0;
}
p {
  margin-top: 0;
  margin-bottom: 0;
}
sup {
  position: relative;
  top: -.5em;
  vertical-align: baseline;
  font-size: 75%;
  line-height: 0;
}
strong {
  font-weight: bold;
}
figure {
  margin: 0;
}
img {
  border: 0;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
a {
  text-decoration: none;
  color: inherit;
}
button {
  border: 0;
  margin: 0;
  padding: 0;
  text-align: inherit;
  text-transform: inherit;
  font: inherit;
  -webkit-font-smoothing: inherit;
  letter-spacing: inherit;
  background: none;
  cursor: pointer;
  overflow: visible;
}
::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/* --- Custom Styles Below --- */

.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-bold {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.poppins-extrabold {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: normal;
}

body {
    font-size: 1rem;
    line-height: 1.5;
    color: #ff0000;
    background-color: black;
}

#wrapper {
    display: flex;
    justify-content: space-between;
    width: 80%;
    flex-direction: column;
    margin: 0 auto;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    padding-top: 40px;
    padding-bottom: 80px;
}

.segment-a {
}

.segment-b {
}

.logo-icon {
    margin-left: -40px;
}

.headline-text-wrapper {
    font-size: 7rem;
    line-height: 0.9em;
    margin-bottom: 20px;
}

h2 {color: black;
border: red;
border-width: 2px;
-webkit-text-stroke: 1px rgba(255, 0, 0, 1);
text-stroke: 1px rgba(255, 0, 0, 1);
letter-spacing: -.03em;
}

.large-text {
    font-size: 1.6em;
}

p.large-text {
    margin-bottom: 20px;
}

.cta-button {
    margin-bottom: 20px;
}

.embeddable-buttondown-form {
    margin-top: 20px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    width: 50%;
}

input[type="email"] {
    padding: 12px 16px;
    font-size: 1rem;
    border: 2px solid #ff0000;
    border-radius: 4px;
    margin-bottom: 10px;
    background-color: black;
    color: white;
}

input[type="email"]::placeholder {
    color: #ff0000;
    opacity: 1;
}

input[type="submit"] {
    padding: 12px 16px;
    font-size: 1rem;
    border: 2px solid #ff0000;
    border-radius: 4px;
    background-color: #ff0000;
    color: black;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

.learn-more {
    border-top: 1px solid #ff0000;
    padding-top: 20px;
    margin-top: 30px;
    font-size: .9rem;
}


@media screen and (max-width: 900px) {

    .logo-icon {
    margin-left: -20px;
    }

    .logo-icon img{
    width: 16%;
    }

    .logo-text{
    width: 55%;
    }


    .headline-text-wrapper {
        font-size: 5rem;
    }

    .large-text {
        font-size: 1.2em;
    }

    .cta-button {
        padding: 12px 24px;
    }

    .embeddable-buttondown-form {
    width: 75%;
    }
}


@media screen and (max-width: 400px) {


    .logo-icon {
    margin-left: -20px;
    }

    .logo-icon img{
    width: 18%;
    }

    .logo-text{
    width: 55%;
    }


    .headline-text-wrapper {
        font-size: 3rem;
    }

    .large-text {
        font-size: 1em;
    }

    .cta-button {
        padding: 12px 24px;
    }
    .embeddable-buttondown-form {
    width: 100%;
    }
}