body {
  text-align: center;
}

.score-panel {
  text-align: center;
  /* width: 345px; */
  /* margin-bottom: 10px; */
}
.stars {
  /* margin: 0; */
  padding: 0;
  display: inline-block;
  margin: 0 5px 0 0;
}

.stars li {
  list-style: none;
  display: inline-block;
}

.checked {
  color: gold;
}

.projects {
  padding: 1.5rem;
  margin-right: 0;
  margin-left: 0;
  border-width: 1px;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}

/*
From my Udacity "Portfolio" project
*/
.social_icons {
  display: flex;
  /*if removed, icons are not displayed*/
  margin: 0 auto;
  /*if I want to center*/
  width: fit-content;
  /*if I want to center*/
  -webkit-padding-start: 0;
  -moz-padding-start: 0;
  /* User agent stylesheet puts a value of 40px
  forcing my icons off-center. This vendor extension,
  although unknown by w3c validator, fixes this
  issue.*/
  font-size: 1.5rem;
  text-shadow: 3px 3px 3px #aaa;
  text-decoration: none;
}

/* Needs to be fixed */
.social_icons li {
  list-style-type: none;
  /*removes bullet points*/
  float: left;
  padding: 10px;
  /*nice padding between social_icons*/
}

/* https://www.w3schools.com/howto/howto_css_modals.asp */

/* The Modal (background) */
.modal {
  /* display: none; */
  display: block;
  visibility: hidden;
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0, 0, 0); /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content {
  background-color: #02b3e4;
  color: gold;
  text-align: center;
  margin: 15% auto; /* 15% from the top and centered */
  padding: 20px;
  border: 1px solid #888;
  border-radius: 8px;
  width: 80%; /* Could be more or less, depending on screen size */
}

.modal-content li {
  list-style: none;
}

.success {
  background-color: MediumBlue;
}

.failure {
  background-color: FireBrick;
}

.show-modal {
  /* display: block; */
  /* opacity: 1; */
  visibility: visible;
  /* transform: scale(1.0); */
  /* transition: visibility 0s linear 0s, opacity 0.25s 0s, transform 0.25s; */
}

/* The Close Button */
.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

#notfound {
  position: relative;
  height: 100vh;
}

#notfound .notfound {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.notfound {
  max-width: 520px;
  width: 100%;
  line-height: 1.4;
  text-align: center;
}

.notfound .notfound-404 {
  position: relative;
  height: 200px;
  margin: 0px auto 20px;
  z-index: -1;
}

.notfound .notfound-404 h1 {
  font-family: "Montserrat", sans-serif;
  font-size: 236px;
  font-weight: 200;
  margin: 0px;
  color: #211b19;
  text-transform: uppercase;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.notfound .notfound-404 h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 28px;
  font-weight: 400;
  text-transform: uppercase;
  color: #211b19;
  background: #fff;
  padding: 10px 5px;
  margin: auto;
  display: inline-block;
  position: absolute;
  bottom: 0px;
  left: 0;
  right: 0;
}

.notfound a {
  font-family: "Montserrat", sans-serif;
  display: inline-block;
  font-weight: 700;
  text-decoration: none;
  color: #fff;
  text-transform: uppercase;
  padding: 13px 23px;
  background: #ff6300;
  font-size: 18px;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.notfound a:hover {
  color: #ff6300;
  background: #211b19;
}

@media (max-width: 500px) {
  .projects .buttonText {
    font-size: 0;
    color: red;
  }
}
