
  @import url('https://fonts.googleapis.com/css2?family=Intel+One+Mono:wght@300;400;500;600;700&display=swap&display=swap');

  body {
    background-color: #e4decd;
    font-family: 'Intel One Mono', monospace;
  }
  main{

    margin-top: 0;
    margin-bottom: 0;
    margin-right: 5%;
    margin-left: 5%;
  }

  h1 {
    color: #beb9aa;
    font-weight: 700;
  }

  h3 {

    color: #d4b9a9;

  }
  .glass {

    border-radius : 15%;
  }
  .compsci {
    padding: 1.5em;

  }
  img {
    margin-bottom: 2em;


  }

  .content-list {
    list-style-type: disc;
    margin: 1em 0;
    padding-left: 2em;
  }
  .content-list li {
    margin-bottom: 0.5em;
  }

html, body {

    height: 100%;
    width: 100%;
}

.vert-text {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}

.vert-text h1 {

    padding: 0;
    margin: 0;
    font-size: 4.5em;
    font-weight: 700;
}

.header {

    display: table;
    height: 100vh;
    width: 100%;
    position: relative;
    background: url(assets/champagneglasses.jpg) no-repeat center center fixed ;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;


}

.intro {
    padding: 50px 0;
}

.books {
  display: flex;
  flex-wrap: wrap;
  gap: 30px; /* more space between books */
}

.book {
  max-width: 200px; /* was 150px before */
  text-align: center;
}

.book img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.shadow {

    box-shadow: 10px 10px 5px rgb(138, 134, 124);


}

.dropbtn {

  background-color: #4a4640;
  color: white;
  padding: 16px;
  font-size: 16px;
  border: none;

}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {

  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  color: black;
  padding: 12px;
  text-decoration: none;
  display: block;
}

.title{

  color: #252320;

}

.banner {

  position: relative;
  height: 200px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  overflow: hidden;

}

.banner img {

  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  left: 0;
  right: 0;
}


.dropdown-content a:hover {background-color: #ddd;}
.dropdown:hover .dropdown-content {display: block;}
.dropdown:hover .dropbtn {background-color: #777d7e;}