body, h1, h2, p, ul, li {
    margin: 0;
    padding: 0;
}

body {
    background-image: url(bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center; 
    align-items: center; 
    min-height: 97vh;
    margin: 0;
    padding: 0;
    max-width: 98.5%;
    position: relative;
    color: white;
}

.answer {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    height: 60%;
    width: 70%;
    float: center;
    padding: 10px;
    color: #FFFF00;
    text-align: center;
}

.answer h1 {
    text-align: center;
    color: white;
}

header {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 100;
    background-color: transparent;
    color: #ffffff;
    text-align: center;
    padding: 20px;
    width: 100%;
    position: absolute;
    top: 0; 
}

.container {
    max-width: 900px;
    width: 100%;
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    margin-top: 20px;
    flex: 1;
}

.hero {
    min-width: 400px;
    min-height: 250px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    padding: 20px;
    text-align: center;
}

form {
    display: inline-block;
    text-align: left;
}

textarea {
    width: 95%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid black;
    border-radius: 5px;
}

.box {
    border: 1px solid black;
    border-radius: 2px;
}

select {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

input[type="submit"] {
    padding: 10px 20px;
    background-color: #010844;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

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

#files {
    padding: 5px;
}

.result {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 5px;
    margin: 20px;
}

.result h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
}

footer {
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px 10px 0 0;
    box-shadow: 0 -4px 16px 0 rgba(0, 0, 0, 0.3);
    color: #fff;
    text-align: center;
    padding: 10px;
    width: 101.5%;
    position: fixed;
    bottom: 0; 
    justify-content: center;
    margin: 0;
}