html{
    scroll-behavior: smooth;
}



body{
    background-color: #EFBAF2;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
}

#headers{
    font-family: Nunito;
    font-weight: 900;
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 0;
}
.header{
    display: flex;
    font-size: 60px;
    flex-direction: column;
    align-items: center;
    text-align: center;
    line-height: 0;
}
#logo{
    display: block;
    height: 500px;
    width: 500x;
    margin-bottom: 0;
    padding-bottom: 0;
    line-height: 0;
}

#noti{
    margin-top: 100px;
    background-color: transparent;
    border-radius: 0%;
    height:100px;
    width:400px;
    font-size: 50px;
    font-family: Nunito;
}



/* CSS */
.button-19 {
  appearance: button;
  background-color: transparent;
  border: solid black;
  border-radius: 16px;
  color: black;
  cursor: pointer;
  display: inline-block;
  font-family: din-round,sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .8px;
  line-height: 20px;
  margin: 0;
  outline: none;
  overflow: visible;
  padding: 13px 16px;
  text-align: center;
  text-transform: uppercase;
  touch-action: manipulation;
  transform: translateZ(0);
  transition: filter .2s;
  vertical-align: middle;
  white-space: nowrap;
  width: 100%;
  margin-top: 100px;
  transition: filter 0.3s, transform 0.3s;
}




.button-19:hover {
  filter: brightness(1.1);
  -webkit-filter: brightness(1.1);
  transform: scale(1.1);
}

#emails{
    margin-top: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 900px;
    
}
#email{
    text-align: center;
    font-family: Nunito;
    font-weight: 900;
    height: 200px;
    width: 500px;
    color: transparent;
}
.input {
  font-family: Nunito;
  max-width: 190px;
  padding: 0.875rem;
  font-size: 1rem;
  border: 1.5px solid #000;
  border-radius: 0.5rem;
  box-shadow: 2.5px 3px 0 #000;
  outline: none;
  transition: ease 0.25s;
  height: 30px;
  width: 280px;
}

.input:focus {
  box-shadow: 5.5px 7px 0 black;
}

.button{
    margin-top: 50px;
    --bg: transparent;
  --hover-bg: transparent;
  --hover-text:white;
  color: #fff;
  cursor: pointer;
  border: 1px solid var(--bg);
  border-radius: 4px;
  padding: 0.8em 2em;
  background: var(--bg);
  transition: 0.2s;
  color: black;
  font-family: Nunito;
  font-weight: bold;
}

.button:hover {
  color: var(--hover-text);
  transform: translate(-0.25rem, -0.25rem);
  background: var(--hover-bg);
  box-shadow: 0.25rem 0.25rem var(--bg);
}

.button:active {
  transform: translate(0);
  box-shadow: none;
}

.thank-you-message {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center; /* for vertical centering */
  min-height: 100vh;       /* optional: full viewport height */
}

.messege{
  font-family: Nunito;
}
#small{
  font-weight: bold;
}
#redirect{
  text-decoration: none;
  color: black;
  transition: filter 0.3s, transform 0.3s;
}
#redirect:hover{
  transform: scale(1.1);
}