body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background: -webkit-linear-gradient(left, #335599,#336699,#4d88cc
, #66a3ff);
    background-image: url('img/house.jpg');
    background-size: 100% 100%;
    color: white;
    text-align: center;
}

body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3); /* Dark overlay */
    z-index: -1;
}
/*body {
background-image: linear-gradient(rgba(0, 0, 0, 0.527),rgba(0, 0, 0, 0.5)) , url(EauDp1hUcAAE-bK.jpg);
}*/
.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
.title {
    font-size: 5rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: white;
    /*add stripes*/
/*background: repeating-linear-gradient(
    60deg,
    white 0px,
    white 5px,
    black 5px, 
  		black 7px
);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;*/
}
.description {
    font-size: 2.5rem;
    margin-bottom: 30px;
    max-width: 800px;
    color: white;
}
.submit-button {
    background-color: #3b82f6;
    color: white;
    font-size: 2.3rem;
    padding: 10px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}
.submit-button:hover {
    background-color: #2563eb;
}
