*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
    max-width: 1500px;
    margin: 0 auto;
    padding: 20px;
}

body {
    background-color:lightslategray;
}

/*h1 {
    color: rgb(104, 20, 240);
    font-family: sans-serif;
}*/

form {
    background-color:rgb(170, 163, 214);
    padding: 10px;
    border-radius: 5px;
}

/*fieldset{
    border: 4px outset rgb(4, 245, 153);
}*/

.button {
    font-size: 12px;
    padding: 4px 8px;
    width: auto;
}

.header {
    width: 100%;
    height: 120 px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    overflow: hidden;
}

.header img{
    max-width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer{
    text-align: center;
    position: fixed;
    bottom: 0;
}