body {
    margin: 0;
    padding: 0;
    font-family: "Press Start 2P";
    background: url('CONTACT.jpg') no-repeat center center fixed;
    background-size: cover;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.contact-container {
    font-family: "Press Start 2P";
    background-color: rgba(0, 0, 0, 0.8); 
    padding: 20px 30px;
    border-radius: 10px;
    width: 400px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

h1 {
    font-family: "Press Start 2P";
    font-size: 2rem;
    margin-bottom: 15px;
    color: #ffcc00;
}

p {
    font-family: "Press Start 2P";
    font-size: 1rem;
    margin-bottom: 20px;
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

input, textarea {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background: #222;
    color: #fff;
    font-size: 1rem;
}

textarea {
    font-family: "Press Start 2P";
    resize: none;
}

input:focus, textarea:focus {
    outline: none;
    border: 2px solid #ffcc00;
}

button {
    font-family: "Press Start 2P";
    padding: 10px;
    background-color: #ffcc00;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    color: #000;
    transition: background 0.3s ease;
}

button:hover {
    background-color: #ffdd33;
}
