/* Checksum css version 2.1 @Carlostkd 2024.1 */
body {
    background-color: #333;
    color: #fff;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    position: relative; /* Add this line for absolute positioning */
}

.header {
    text-align: center;
    padding: 20px 0;
    background-color: #333;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.home-button {
    display: inline-block;
    padding: 10px 20px;
    margin: 10px;
    text-align: center;
    background-color: blue;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}
.container {
    width: 50%;
    margin: 50px auto;
    padding: 20px;
    background-color: #333;
    border-radius: 8px;
    text-align: center;
    flex: 1;
}

input[type="file"],
input[type="text"],
input[type="submit"] {
    padding: 10px;
    margin: 5px;
    border: none;
    border-radius: 5px;
}

input[type="submit"] {
    background-color: #00ccff;
    color: #fff;
    cursor: pointer;
}

input[type="submit"]:hover {
    background-color: #0099cc;
}
body {
    background-color: #333;
    color: #fff;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    position: relative; /* absolute positioning */
}

.container {
    width: 50%;
    margin: 50px auto;
    padding: 20px;
    background-color: #444;
    border-radius: 8px;
    text-align: center;
    flex: 1;
}

.footer {
    text-align: center;
    padding: 10px 0;
    background-color: #333;
    color: #fff;
    position: absolute;
    bottom: 0;
    width: 100%;
    left: 0; /* footer to the left */
    right: 0; /* footer to the right */
}
h1 {
   color:orange;
}

p {
   color:red;
}

h2 {
   color:green;
}

::placeholder {
   text-align: center; 
}

/* for small screens */
@media screen and (max-width: 600px) {
    
}

