@import url('https://fonts.googleapis.com/css2?family=Doto:wght@100..900&display=swap');

* {
    padding: 0;
    margin: 0;
}

body {
    background: radial-gradient(circle, #1a1a1d, #0d0d0f);
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

main h1 {
    font-family: 'Doto', sans-serif;
    font-size: 100px;
    margin-top: 15%;
}

main flex {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

input[type="text"] {
    width: 200%;
    padding: 10px;
    margin: 20px 0;
    border: none;
    border-radius: 15px;
    font-size: 16px;
}

footer {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 10px;
    width: 100%;
}

footer p {
    color: white;
    font-family: 'Doto', sans-serif;
    font-size: 14px;
    text-decoration: none;
}

footer p a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}