@font-face {
  font-family:'Apfel Grotezk';
  src:url('fonts/ApfelGrotezk-Regular.woff2');
  font-weight: 400;
  font-style: normal;
}

html, body {
  margin:0;
  padding: 0;
}

body {
    font-family: "Apfel Grotezk", sans-serif;
    /* height: 100vh; */
    overflow: hidden;
    position: relative;
}

* {
  box-sizing: border-box;
  text-size-adjust: none;
  -webkit-text-size-adjust: none;
}

.bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('meteor-bg.png');
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.oval-mask {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.oval-window {
    position: absolute;
    background: transparent;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    clip-path: ellipse(50% 50% at 50% 50%);
}

#wishForm {
    position: relative;
    z-index: 3;
    height: 100vh;
    pointer-events: none;
}

.wish-area {
    pointer-events: auto;
}

textarea {
    width: 100%;
    max-width: 100vw;
    height: 400px;
    background: transparent;
    border: none;
    outline: none;
    font-size: 64px;
    font-weight: 300;
    caret-color: #FF0000;
    resize: none;
    text-align: left;
    padding: 10px;
}

textarea::placeholder {
    color: #D9D9D9;
}

.send-wish {
  position: absolute;
  top:60%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 5;
  pointer-events: auto;
}

#send-button {
    margin: auto;
    padding: 2px 10px;
    background: transparent;
    border: none;
    font-size: 64px;
    -webkit-text-stroke: 1px black;
    color: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

#send-button:hover, #send-button:focus {
    color: #333;
        text-shadow: 0 0 20px #ED2939,
             0 0 30px #ED1C24,
             0 0 40px #FF0000;
}

#send-button:active {
      color: #333;
        text-shadow: 0 0 20px #ED2939,
             0 0 30px #ED1C24,
             0 0 40px #FF0000;
}

.wish-questions {
    position: fixed;
    bottom: 5px;
    left: 0;
    z-index: 4;
    display: block;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-align: center;
}

.wishQ {
    font-size: 5em;
    font-weight: 700;
    color: rgb(0, 0, 0);
    max-width: 100%;
    padding: 10px;
}

@media (max-width: 1100px) {
    .wishQ {
        font-size: 4em;
    }
    textarea {
        font-size: 52px;
    }
    #send-button {
        font-size: 52px;
    }
}

@media (max-width: 767px) {
    .wishQ {
        font-size: 3em;
    }
    textarea {
        font-size: 44px;
    }
    #send-button {
        font-size: 44px;
    }
     @media (max-height: 500px) {
     }
}


@media (max-width: 550px) {
}

@media (max-width: 480px) {
}

@media (max-width: 380px) {
}