body, h1, p{
    font-size: 1.2em;
    background-color: black;
    color: white;
    font-family: "Courier New", Courier, monospace;
    display: block;
    flex-direction: column;
    align-items: left;
    justify-content: center;
    padding: 5px 5px;
    margin: 5px 5px;
    line-height: 1.2; /* Consistent line spacing */
}


.button-group {
    display: flex;
    align-items: center;
    gap: 10px; /* Add spacing between buttons/labels */
}



.button-style {
    
    font-family: "Courier New", Courier, monospace;
    font-size: 1em;
    display: flex;
    background-color: #333; /* Dark background */
    color:grey;
;
    /* text-transform: uppercase; */
    /* font-size: 1.2em; */
    padding: 5px 5px;
    margin: 5px 5px;
    border: none; /* No border */
    border-radius: 5px;
    cursor: pointer;
    line-height: 1.2;
    margin-right: 10px; /* Add spacing between labels */ 
}

.label-style {
    
    font-family: "Courier New", Courier, monospace;
    font-size: 1em;
    display: flex;
    background-color: black;
    color: grey;
    /* text-transform: uppercase; */
    /* font-size: 1.2em; */
    padding: 5px 5px;
    margin: 5px 5px;
    border: none; /* No border */
    border-radius: 5px;
    cursor: pointer;
    line-height: 1.2; 
    margin-right: 10px; /* Add spacing between labels */
}

.button-style:hover {
    background-color: #555; /* Slightly lighter hover effect */
}

.email-input {
    /* border: 2px dashed grey; */
    font-family: "Courier New", Courier, monospace;
    font-size: 1em;
    display: flex;
    align-items: center;
    gap: 10px; /* Space between label and input field */
    padding: 5px 5px;
    margin: 5px 5px;
}


input[type="email"] {
    border: 1px dashed grey;
    font-family: "Courier New", Courier, monospace;
    font-size: 1em;
    border-radius: 5px;
    background-color: black;
    color: white;
    width: 250px;
    padding: 5px 5px;
    margin: 5px 5px;
}

input[type="file"] {
    display: none; /* Hide default file input */
}
/* 
#file-name {
    margin-top: 10px;
    font-size: 1em;
    font-family: "Courier New", Courier, monospace;
    color: grey;
}
 */
