/* 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." */

body {
  background: white url('https://images.unsplash.com/photo-1724799533901-bf96569df122?q=80&w=1470&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
  background-size: cover;
  background-position: top center;
  color: black;
  font-family: 'Verdana';
  margin-left: 20px;
  margin-right: 20px;
}

p {
  margin: 5px 0 10px 0;
}

/* --------------- LINK ELEMENTS --------------- */
a {
  color: #2d80cc;
  font-weight: 500;
  text-decoration: none;
}

a:hover {
  color: #0d518f;
  text-decoration: underline;
}

/* --------------- HEADERS ---------------- */
h1 {font-size: 22px;}
h2 {font-size: 18px;}
h3 {font-size: 14px;}
h1, h2, h3 {font-family: Georgia; margin-top: 5px;}

/* --------------- BOOTSTRAP COLOR ELEMENTS --------------- */
.text-muted {color: rgb(108, 117, 125);} /* HEX: #6c757d */
.text-light { color: rgb(248, 249, 250);} /* HEX: #f8f9fa */
.text-dark {color: rgb(33, 37, 41);} /* HEX: #212529 */
.text-danger {color: rgb(220, 53, 69);} /* HEX: #dc3545 */
.text-warning {color:rgb(255, 193, 7);} /* HEX: #ffc107 */

/* --------------- BOX TIME --------------- */
container {
  width: 800px; 
  padding: 15px;
  background: rgba(255,255,255,0.75);
  margin-top: 50px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  border-radius: 25px;
}

/* --------------- NAVIGATION --------------- */
nav {
  background: rgba(255,255,255,1);
  text-align: center;
  max-width: 400px;
  margin: 10px auto 0 auto;
  padding: 10px;
  border: 1px solid #6c757d;
  border-radius: 10px;
  display: block;
}