@import url('https://fonts.googleapis.com/css2?family=Architects+Daughter&display=swap');
body {
    background: rgb(0, 0, 0);
    font-family: Arial, Helvetica, sans-serif;
    color: rgb(200, 0, 175);
    padding: 0 10%;
}
h1 {
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
    font-size: 50px;
}
h2 {
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
    font-size: 30px;
}
h3 {
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
    font-size: 20px;
}
h4 {
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
    font-size: 15px;
}
p {
    margin: 1ex 0;
    color: rgb(255, 255, 255);
}
ul, ol {
    margin-top: -1.1ex;
}
img {
    border: black 5px solid;
    border-radius: 10px;
}
a:hover, a:active {
 color: rgb(200, 0, 175);
}
li{
    color: rgb(200, 0, 175);
    padding: 5;
    border-top: rgb(155, 71, 151) solid 1px;
}
li :first-child {
    border-top: none;
}
textarea {
    padding: 1ex;
    margin: 1ex 0;
    background: rgba(200, 0, 173, 0.144);
    border-radius: 15px;
}
nav ul {
    list-style-type: none;
    background-color: rgb(130, 0, 255);
    font-weight: bold;
    padding: 5px;
    margin: 0;
}
nav ul li {
    display: inline;
    padding: 10px;
    font-size: 25px;
    text-align: center;
    border-top: 0px;
}
nav ul li a {
    text-decoration: none;
    color: black;
}
nav ul li a:visited {
    text-decoration: none;
    color: black;
}
.scribble {
    font-family: 'Architects Daughter', cursive;
    width: 100%;
    box-sizing: border-box;
}
table{
    padding: 1ex;
    margin: 1ex 0;
    border: #ccc solid 1px;
    background: rgb(200, 0, 175);
    color: #333;
    display: table;
    border-radius: 15px;
}
::placeholder {
    color: greenyellow;
    opacity: 1;
}
  
:-ms-input-placeholder {
    color: greenyellow;
}
  
::-ms-input-placeholder {
    color: greenyellow;
}
input {
    border-radius: 10px;
    border-color: blueviolet;
    background-color: darkmagenta;
    display: block;
}
a {
    color: blueviolet;
}