@import url('https://fonts.googleapis.com/css2?family=Ubuntu+Mono:ital,wght@0,400;0,700;1,400;1,700&display=swap');

body{
    font-family: 'Ubuntu Mono', monospace;
    color: rgb(150, 150, 150) !important;
    background-color: rgb(30, 30, 30) !important;
}

::selection{
  background-color: #333;
}

h1{
    font-size: 40px;
}

p{
    font-size: 20px;
}


.container {
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
    
  }
  @media (min-width: 768px) {
    .container {
      width: 750px;
    }
  }
  @media (min-width: 992px) {
    .container {
      width: 970px;
    }
  }
  @media (min-width: 1200px) {
    .container {
      width: 1170px;
    }
  }

.link{
    color: rgb(150, 150, 150) !important;
}

.centered{
  text-align: center;
}

.topnav {
  margin-top: 10px;
  border-radius: 20px;
  background-color: #333;
  overflow: hidden;
  display:inline-block;
  float: none;
}


.topnav a {
  transition: 0.5s;
  float: left;
  color: rgb(170, 170, 170);
  text-align: center;
  padding: 16px 16px;
  text-decoration: none;
  font-size: 17px;
  margin: auto;

}

.topnav a:hover {
  transition: 0.5s;
  color: rgb(30, 30, 30);
  background-color: rgb(170, 170, 170);
}

.footer-paragraph{
  text-align: center;
  font-size: 16px;
  padding-bottom: 25px;
}

