@font-face {
    font-family: 'poppins extraLight';
    src: url('../fonts/Poppins-ExtraLight.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    background: linear-gradient(to bottom, #2c3e50, #3498db) no-repeat fixed;
    font-family: "poppins extraLight", sans-serif;
    margin: 0;
    line-height: 1.6;
    display: flex;
    justify-content: center;
}

h1 {
    color: white;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.267);
}

.container {
    color: white;
    text-align: center;
    max-width: 1200px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    margin-top: 15vh;
}

footer {
    background-color: #222;
    color: white;
    text-align: center;
    padding: 1rem;
    position: fixed;
    bottom: 0;
    width: 100%;
}

input{
    color: white;
    background-color: #444;
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #333;
    border-radius: 4px;
}

button{
    background-color: #4CAF50;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    margin-top: 1rem;
}