*{
    margin:0;
    padding:0;
    color: black;
}

#center{
    text-align: center;
    background-color: black;
}

body {
    text-align: center;
}

img {
    width: 100%;
    height: auto;
}

header {
    position: fixed;
    top: 0;
    width: 100%;
}

header h1 {
    color: white;
    border: 8px solid white;
    display: inline-block;
    padding: 6px;
    border-radius: 36px;
}

#stretch {
    background-color: rgb(67, 0, 101);
}

nav ul {
    white-space: nowrap;
    max-width: 1200px;
    margin: 0 auto;
}

nav {
    background-color: rgb(67, 0, 101);
    padding: 0px;
    position: sticky;
    top: 65px;
    z-index: 2;
}

a, a:link {
    text-decoration: none;
    color: darkorchid;
}

a:visited {
    text-decoration: line-through;
    color: green;
}

a:hover {
    text-decoration: underline;
    color: red;
}

a:active {
    text-decoration: double;
    color: orange;
}

li {
    display: inline-block;
    width: 25%;
    font-size: 24px;
}

li a {
    color: rgb(228, 229, 230);
}

main {
    display: block;
    max-width: 100%;
    margin: 80px auto;
}

#input {
    display: block;
    max-width: 100%;
    margin: 80px auto;
}

p {
    color:black;

}

footer {
    text-align: center;
    background-color: black;
    color: white;
    position: fixed;
    bottom: 0;
    width: 100%
}