

body {
    font-family: 'Press Start 2P', cursive;
    color: #00FF00;
    background-color: #0E0E0E;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
        }

 
.main-content { 
    height: 100vh;
    display: flex;
    flex-direction: column;
}
 
.back-link {
    position: fixed;
    top: 60px;
    left: 1px;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 10px 15px;
    text-decoration: none;
    border-radius: 5px;
    color: #f5f5f5;
    z-index: 10000; 
    transition: color 0.3s;
}

.back-link:hover {
    color: #ff4081;
    background-color: rgba(0, 0, 0, 0.9);
}


.container {
    width: 90%;
    max-width: 600px;
    margin: 10px 20px;
    padding: 100px;
    border: 3px solid #f5f5f5;
    border-radius: 10px;
    background-color: #333;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

h1 {
    text-align: center;
    color: #f5f5f5;
    margin-bottom: 50px;
}

label {
    display: block;
    text-align: center;
    margin-bottom: 10px;
    color: #f5f5f5;
    transition: color 0.3s;
}

input, textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #f5f5f5;
    border-radius: 5px;
    background-color: #444;
    color: #f5f5f5;
    font-family: 'Press Start 2P', cursive;
    box-sizing: border-box;
    transition: color 0.3s;
}

input[type="submit"], button {
    background-color: #f5f5f5;
    color: #222;
    border: none;
    border-radius: 5px;
    padding: 15px 20px;
    cursor: pointer;
    font-family: 'Press Start 2P', cursive;
    width: 100%;
    box-sizing: border-box;
    
}

input[type="submit"]:hover, button:hover {
    background-color: #ff4081;
    
}

#thank-you {
    display: none;
    text-align: center;
    margin-top: 20px;
}
