
html, * {
  margin: 0;
  padding: 0;
}

* { box-sizing: border-box; }

body {
  background-color: #7c37ab;
  font-family: 'Miriam Libre', sans-serif;
  font-size: 25px;
  letter-spacing: 15px;
  min-width: 300px;
}

.main_container {
  margin: auto;
  width: 100%;
  padding: 10px;margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-color: #7c37ab;
  text-align: center;
}
li {
  list-style-type: none;
  margin: 0;
  padding: 0;
  line-height: 40px;
}



a:link {
  color: #00008b;
  text-decoration: none;
}

a:visited {
  color: #00008b;
}

a:hover {
  
  text-decoration: underline;
}