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

body, html {
    width: 100%;
    height: 100%;
}

a { 
    color: #69C9D0;
}

/* Hero Section */
.hero-section {
    background-color: #010101;
    width: 100%;
    height: auto;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-section h2 {
    color: #FFFFFF;
    font-size: 18em;
    font-family: 'Bayon', sans-serif;
    font-weight: bold;
    text-align: center;
}

.intro h3 {
    color: #010101;
    font-size: 2em;
    font-family: 'Bayon', sans-serif;
    text-transform: uppercase;
    font-weight: bold;
    text-align: center;
    line-height:111%;
}

#yestop {
  text-shadow:  
      10px 10px 1px #EE1D52,
      -10px -10px 1px #69C9D0;
}

/* Content Section */
.content-section {
    padding: 10px 0 20px 0;
    margin: 0 auto;
    width: 70%;
}

.content-block {
    width: 100%;
    min-height: 400px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.intro {
    width: 100%;
    min-height: 130px;
    height: 100%;
    display: flex;
    padding-top:60px;
    padding-bottom: 20px;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    align-items: center;
}


.logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.content-block p {
font-family: 'Helvetica', sans-serif;
font-size: 1.5em;
}

.intro p {
    font-family: 'Arial', sans-serif;
    font-size: 2em;
}

/* Footer Section */
.footer-section {
    width: 100%;
    height: 70px;
    background-color: #f1f1f1;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-family: 'Helvetica', sans-serif;
    font-size: 1.2em;
    line-height: 130%;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 150pt;
    }
}

@media (max-width: 480px) {
    .hero-section h1 {
        font-size: 100pt;
    }

    .content-block {
        height: auto;
        padding: 20px;
    }

    .footer-section {
        height: auto;
        padding: 20px;
    }
}
