html, body, ul, li, h1, h2 {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Quicksand', sans-serif;
  color: #1E293B;
  background-image: url('/img/texture-light.png');
  background-color: #F8FAFC;
}


.container {
  position: absolute;
  top:40%;
  left:50%;
  width:400px;
  margin: -220px 0 0 -200px;
  text-align: center;
}

.container img {
  max-width: 70%;
  border-radius: 50%;
}

li {
  list-style: none;
  padding: 4px 0;
  font-family: "VT323", monospace;
}

a, a:visited {
  color:#2563EB;
  font-size: 30px;
  text-decoration: none;
}

a:hover {
  color: #7C3AED;
}

h1, h2 {
  font-weight: 700;
}

h1 {
  font-size: 40px;
  margin: 10px 0 0
}

h2 {
  font-size: 30px;
  color: #2563EB;
  margin: 10px 0 0;
}

.available {
  width: 60%;
  margin:10px auto 20px;
  border-radius: 3px;
  padding: 14px 0;
  color: #fff;
  background-color: #2563EB;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-weight: bold;
  font-size: 16px;
  display: block;
}

.available:hover {
  background-color: #7C3AED;
  color: #fff;
}

/* Modal Styling */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.5);
  backdrop-filter: blur(5px);
}

.modal-content {
  background-color: #fff;
  background-image: url('/img/texture-light.png');
  margin: 10% auto;
  padding: 20px;
  border: 2px solid #2563EB;
  width: 80%;
  max-width: 500px;
  border-radius: 10px;
  position: relative;
  text-align: left;
}

.close {
  color: #2563EB;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover {
  color: #7C3AED;
}

#hireForm label {
  display: block;
  margin-top: 10px;
  color: #2563EB;
  font-size: 14px;
  font-weight: bold;
}

#hireForm input, #hireForm textarea {
  width: 100%;
  padding: 12px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #2563EB;
  border-radius: 4px;
  box-sizing: border-box;
  background-color: #f1f5f9;
  color: #1E293B;
  font-family: 'Quicksand', sans-serif;
}

#hireForm input::placeholder, #hireForm textarea::placeholder {
  color: rgba(30, 41, 59, 0.5);
}

.contact-preference {
  margin: 15px 0;
  color: #2563EB;
  font-size: 14px;
}

.contact-preference p {
  margin-bottom: 8px;
  font-weight: bold;
}

.contact-preference label {
  margin-right: 20px;
  cursor: pointer;
  color: #1E293B;
  display: inline-flex;
  align-items: center;
  font-weight: normal;
  margin-top: 0;
}

.contact-preference input[type="checkbox"] {
  width: auto !important;
  margin: 0 8px 0 0 !important;
  cursor: pointer;
  accent-color: #2563EB;
}

#hireForm button {
  width: 100%;
  margin-top: 10px;
}

/* Background Rays */
.s__rays {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  height: 100%;
  width: 350px;
  z-index: -1;

}

.a-rays {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    opacity: .3;
    pointer-events: none;
    transform: skew(-20deg);
    transition: opacity .7s linear;
    will-change: opacity;
    z-index: -1;
}

.a-rays .a__scene {
    position: absolute;
    top: 0;
    left: 50%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
    transform: translate3d(-50%,0,0);
}
.a-rays .a__scene path {
    stroke-linecap: round;
    stroke-width: 2px;
    animation: a-rays-move 25s linear infinite;
    will-change: transform;
    z-index: -1;
}
/* Background Rays animation */
@keyframes a-rays-move {
  0% {
      transform: translateZ(0);
  }
  100% {
      transform: translate3d(0,-100%,0);
  }
}
