32 lines
384 B
CSS
32 lines
384 B
CSS
* {
|
|
font-family: Arial, Helvetica, sans-serif;
|
|
}
|
|
|
|
body {
|
|
background-color: black;
|
|
color: white;
|
|
text-align: center;
|
|
}
|
|
|
|
button {
|
|
font-size: 18px;
|
|
margin: 10px;
|
|
}
|
|
|
|
::placeholder{
|
|
color: white;
|
|
}
|
|
|
|
#bio {
|
|
color:white;
|
|
font-size: 20px;
|
|
background-color: black;
|
|
border: 0px solid black;
|
|
border-radius: 7px;
|
|
}
|
|
|
|
.bio {
|
|
color:white;
|
|
font-size: 20px;
|
|
}
|