/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: black;
  color: white;
  font-family: Verdana;
}

.banner {
  width: 100%;
}

.center {
  text-align: center;
}

.custom-list {
  list-style: none;
  padding: 10px;
  margin-left: 6%;
  font-family: 'Segoe UI', sans-serif;
  border: 1px solid white; /*This is thickness btw, not the actual size as you might expect. That would be width, which is below this. Fucking markup language*/
  width: 200px;
  border-radius: 50px;}
  /*Kung kaya mo basahin ito, congrats! naintindihan mo ang aking wika! Now, malayas ka na dito, tanga!*/
  
.butt {
  text-align: center;
  width: 50%;
  margin: auto;
}

