* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Georgia, Time-New-Roman, serif;
    background-image: url(space_background.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center; ;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.contact {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 500px;
}

h1 {text-align: center;
    margin-bottom: 20px;}

label {
    display: block;
    font-size: 1rem;
    margin-bottom: 8px;
    color: #333;
}

input[type="text"],
input[type="email"],
input[type="date"],
textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
    color: #333;
}

.submit-btn {
    width: 100%;
    padding: 12px;
    background-color: #ff217c;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.2s;
}

.submit-btn:hover {
    background-color: #0cffe2;
}

@media (max-width: 600px) {
    .contact-container {
        padding: 15px;
    }
	
    .submit-btn {padding: 10px;}
}
