/* 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." */
html {
  background-image: url("https://static.colourlovers.com/images/patterns/4160/4160507.png");
  background-repeat: repeat;
  overflow-x: hidden !important;
  background-color: #011218
}

body {
  color: white;
  font-family: Verdana;
  margin: 0rem;
}

a:link, a:visited {
    color: #def0f4;
    text-decoration: underline;
}

a:hover {
    color: #def0f4de;
}

.navbar {
  background-color: #063141e0;
  width: 100vw;
  color: #def0f4de !important;
  padding: 0.5rem 0.8rem;
  margin-bottom: 1.8rem;
  border-bottom: 1px solid #063141;
  width: 100vw !important;
}

.container {
  border: 1px solid #2596be;
  border-radius: 10px;
  background-color: #103942de;
  color: white;
  padding: 0.2rem 1.3rem 0.5rem;
  margin-left: auto;
  margin-right: auto;
  width: 75vw;
  box-shadow: 10px 10px 10px 0px #063141e0;
  margin-top: 2rem;
}

.container-title {
  font-size: 1.8rem;
  margin: 1.5rem 0rem;
}

.centered-row {
  margin-left: auto;
  margin-right: auto;
  width: 75vw;
  margin-top: 2rem;

  display: flex;
  justify-content: center;
  align-items: stretch; 
  gap: 2rem;
  flex-wrap: wrap;
}

.card-in-row {
  margin: 0;
  display: flex;
  flex-direction: column;
}

.card {
  border: 1px solid #2596be;
  width: 18rem;
}

.card-body {
  padding: 0.5em;
}

.card-image {
  width: 100%;
}

.card-title {
  font-size: 1rem;
}

.card-text {
  font-size: 0.9rem;
}