/* 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 {
  display: flex;
  justify-content: center; /* Centers horizontally */
  align-items: center;
  flex-direction: column;
  
  /* background-color: #d7f1f5;*/
  background: linear-gradient(rgb(251, 220, 220, 0.15), rgb(251, 220, 220, 0.15)), url(https://64.media.tumblr.com/2a817f9a90af9d4eea6e62dfa69d56ea/tumblr_inline_mnsauboz0G1qz4rgp.png);
  text-align: center;
  color: black;
  font-family: times;
}

/* For Hypelinks */
a:link {color: black;}
a:visited {color: black;}
a:hover {color: DodgerBlue;}
a:active {color: black;}
a:link, a:visited {text-decoration: none;}
      
.no-bullets-list {
  list-style-type: none; /* Removes the bullet points */
  padding: 0;            /* Removes default left padding (indentation) */
  margin: 0;             /* Removes default margins */
}

.big_container {
  display: flex;
  justify-content: center; /* Centers horizontally */
  align-items: center;
  flex-direction: column;
  background-color: white;
  width: 34%;
  border: 1px solid black;
}

.header_container {
  margin-top:4px;
  width: 98%;
  height: 80px;
  background-color: lightblue;
  border: 1px solid black;
}

.header_container img {
  padding-top:13px;
  width: 60%;
  height: 60%;
  object-fit: contain; /* Determines how the image fits */
}

.containers {
  display: flex;
  justify-content: center; /* Centers horizontally */
  align-items: center;
  flex-direction: row;
}

.side-container {
    margin: 5px 5px 5px 5px;
    /* Set specific dimensions for the container */
    width: 100px;
    height: 225px;
    text-align: left;
    /* Add a border for visibility (optional) */
    border: 1px solid black;
    padding: 10px;
}

.scroll-container {
    margin: 5px 5px 5px 5px;
    /* Set specific dimensions for the container */
    width: 300px;
    height: 225px;
    text-align: center;
    /* Add a border for visibility (optional) */
    border: 1px solid black;
    padding:10px;

    /* Control the scrolling behavior */
    overflow-y: scroll; 
}

.center_container {
    margin: 5px 5px 5px 5px;
    /* Set specific dimensions for the container */
    width: 428px;
    height: 225px;
    text-align: center;
    /* Add a border for visibility (optional) */
    border: 1px solid black;
    padding:10px;

    /* Control the scrolling behavior */
    overflow-y: scroll; 
}


.box-container {
  margin-bottom:4px;
  width: 98%;
  height: 20px;
  border: 1px solid black;
  background: lightblue;
}