body {
    font-family: 'Forum', serif;
    color: blanchedalmond;
    margin: 0;
}

h1 {
    font-weight: 900;
    font-size: 6rem;
}

.page-wrapper {
    padding: 2vh 20vw;
    background: url(/cae57e13-2034-4ed6-bcfe-30fba0733f36.jpg) #000000d4;
    background-size: cover;
    background-repeat: no-repeat;
    background-blend-mode: multiply;
}


p {
    font-size: 2rem;
}

.calAdd {
    border-radius: 4px;
}

/* General Form Styling */
form {
  	width: auto;
    max-width: 700px;
    margin: 20px auto;
    padding: 20px;
    border-radius: 5px;
}

/* Style for Form Elements: Labels, Input, Textarea, and Button */
form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

form input[type="text"],
form input[type="email"],
form textarea {
    width: 100%;
    padding: 8px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

form textarea {
    height: 100px;
    resize: vertical;
}

form button {
    background-color: blanchedalmond;
    color: rgb(16, 16, 16);
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s;
  	font-weight: bold;
}

form button:hover {
    background-color: rgb(6, 6, 6);
    color: #fefefe;
}

form a {
    align-self: baseline;
}

.cal-btn {
  color: white;
  text-decoration: none;
}

.cal-btn img {

  	padding: 10px;
  	width: 25px;
  	height: 25px;
  	background-color: white;
  	border-radius: 4px;
  	margin-right: 5px;
}

/* Responsive Design */
@media screen and (max-width: 600px) {
    form {
        margin: 20px 0;;
        padding: 0;
        /* width: 80%; */
    }
  
  	.page-wrapper {
        padding: 1vh 10vw;
        background: url(/cae57e13-2034-4ed6-bcfe-30fba0733f36.jpg) #000000ea;
        background-size: cover;
        background-repeat: no-repeat;
  	}
  
	.cal-btn {
    	display: block;
    }
    
    .snd-btn {
  		display: none;		
  	}
  
  	.gap {
      	display: none;
  	}
  
  h1 {
    font-size: 3.4rem;
  }
}
