@import url("https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@400;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: coral;
  font-family: "Roboto Mono", monospace;
  font-size: 20px;
}

/* width scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey;
  border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #fff;
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #3d3c3d;
}

.logo {
  width: 100%;
  height: auto;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.micro {
  width: 100%;
  height: auto;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pagewrap {
  width: 100%;
  height: auto;
  min-height: 100vh;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.fale {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: chartreuse;
  color: black;
  border: 4px solid #fff;
  outline: none;
  margin-bottom: 10px;
}

.fale:hover {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: black;
  color: chartreuse;
  border: 4px solid #fff;
  cursor: pointer;
}

.pagewrap ul li {
  width: 300px;
  height: auto;
  padding: 10px;
  background-color: #fff;
  border-radius: 7px;
  color: black;
  list-style: none;
  margin: 10px;
}
