/* BODY */
body {
    background-color: #680d93;
    color: white;
    font-family: "VT323", monospace;
    text-align: center;
}

/* IMAGE */
img {
    display: block;
    margin: auto;
}

/* TEXT */
p {
    font-size: 15px;
}

h1 {
    font-size: 40px;
}

h4 {
    font-size: 20px;
}

/* LINKS */
a {
    color: white;
    text-decoration: none;
}

/* LISTS */
ul {
    list-style-position: inside;
    padding-left: 0;
}

li {
    margin: 10px 0;
}

/* BUTTON */
button {
    font-family: "VT323", monospace;
    font-size: 18px;
    background: black;
    color: white;
    border: 2px solid white;
    padding: 8px 16px;
    cursor: pointer;
}

button:hover {
    background: white;
    color: black;
}