/* 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: pink;
  background-repeat: repeat;
  color: black;
  font-family: Verdana;
}
h1 {
  color: white;
  text-shadow: 2px 2px pink;  
}
h2 {
  color: white;
  font-size: 20px;
  text-shadow: 1px 1px pink;  
}
font {
  font-size: 8px;  
}
header {
  padding: 10px;  
}
/*sidebar left*/
.sidebar-uwu {
  height: 100%;
  width: 160px;
  position: fixed;
  z-index:1;
  top: 0;
  background-color: cyan;
  overflow-x: hidden;
  padding-top: 20px;
  box-shadow: 10px 10px black;
}
.sidebar-uwu a {
  padding: 6px 8px 6px 16px;
  text-decoration: none;
  color: black;
  display: block;
}
.sidebar-uwu a:hover {
  background-color: pink;
  color: white;
}
.sidebar-uwu img {
  max-width: 150px;
  box-shadow: 10px 10px white;
  margin-bottom: 7px;
}

.centered-text {
  text-align: center;
}
/*buttons*/
.button {
  padding: 5px;
  background-color: pink;  
  box-shadow: 10px 10px black;
  position: relative;
  text-decoration: none;
}
.button:hover {
  padding: 5px;
  background-color: pink;
  box-shadow: 5px 5px black;
  position: relative;
  top: 5px;
  left: 5px;
}
/*main*/
.main-owo {
  background-color: cyan;
  max-width: 800px;
  color: black;
  font-family: Verdana;
  box-shadow: 10px 10px black;
  padding: 10px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 20px
}