*{
padding: 0%;
margin: 0%;
box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f7fa;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.nav{
    background: blue;
    line-height:185%;
}

#h1{
    display: flex;
    justify-content: center;
    color: #f5f7fa;
}
h5{
     display: flex;
    justify-content: center;
    color: #f5f7fa;
}
h2{
    display: flex;
    background-color: #f0f0f0;
}
.main-panel {
    background-color: white;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 2rem;
    margin-bottom: 2rem;
}

.form-panel{
    margin-bottom: 2rem;
}

.input1{
    width: 100%;
    height: 28vh;
}
h3{
    display: flex;
    justify-content: center;
     background-color: #f0f0f0;
}
.marquee1{
     background-color: #f0f0f0;
}
.input2{
   width: 70%;
    padding-bottom:15px;
}

.btn {
    display: inline-block;
    font-weight: 400;
    text-align: center;
    vertical-align: middle;
    user-select: none;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.25rem;
    cursor: pointer;
    transition: all 0.15s ease-in-out;
     color: #fff;
    background-color: #1a73e8;
    border: 1px solid #1a73e8;
}

.input3{
    width: 100%;
    height: 28vh;
}

/* Footer */
footer {
    background-color: #f0f0f0;
    padding: 1rem 0;
    text-align: center;
    font-size: 0.9rem;
    color: #6c757d;
    margin-top: auto;
}