/* Reset & basics */
 

    * {
      font: inherit;
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    html,
    body {
      height: 100%;
     /* background: radial-gradient(ellipse at center, #fff5f0, #ffeae0);*/
		background: white;
      color: red;
      font-family: Helvetica, Arial, sans-serif;
      font-size: 20px;
      line-height: 1.5;
      overflow: hidden;
      position: relative;
    }
    .text {
      position: absolute;
      bottom: 10%;
      left: 5%;
      width: 17%;
      text-align: left;
      transform: rotate(-3deg);
      filter: blur(0.5px);
      padding: 0;
      overflow: hidden
     
    }

   .cal {
      position: absolute;
      top: 15%;
      right: 15%;
      width: 30%;
      text-align: left;
      transform: rotate(6deg);
      filter: blur(0.5px);
      padding: 0;
      overflow: hidden
     
    }

    p:not(:last-child) {
      margin-bottom: 1.45rem;
    }
    .scroll-text {
      position:relative;
        width: 100%;
      bottom: 0;
      left: 0;
      width: 100vw;
      overflow: hidden;
      z-index: 1000;
    }
    .scroll-text a {
      display: inline-block;
      white-space: nowrap;
      animation: scroll-left 120s linear infinite;
      color: red;
      text-decoration: none;
      cursor: pointer;
      transition: filter 0.3s;
    }
    .scroll-text a:hover {
      filter: blur(0px);
      pointer-events: auto;
    }
    @keyframes scroll-left {
      0% { transform: translateX(0%); }
      100% { transform: translateX(-100%); }
    }
    @media (min-width: 768px) {
      html {
        font-size: 24px;
		  
      }
	
    }
@media (max-width: 768px) {
      .text {
        width: 60%;
		  
      }
	
    }
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 30%; left: 30%;
  width: 25%; height: 100%;

	transform: rotate(3deg);
}
input[type="submit"] {
	background:none!important;
	border:none!important;
	text-transform:uppercase!important;
	color:red!important;
}
input[type="submit"]:hover{
	text-decoration:underline!important;
	font-style:italic!important;
}
input {
  border: none;
  color: #ff000094;
	background:none;
}
input:focus {
  outline: none; 
  border: dotted #ff000094;
}
.modal-content {
	
  margin: 10% auto;
  padding: 2rem;
  width: 90%;
  max-width: 500px;
  border-radius: 12px;
  font-family: Helvetica, sans-serif;
}

.close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.5rem;
  cursor: pointer;
}

a{ text-decoration: none;}
  