/* 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-color: #e3ccf4;
  color: black;
  font-family: Georgia, serif;
  padding: 80px;

}
 .top-bar{
    background-color: black;
    text-align: center;
    padding: 20px;
    width: 100%;
    position: fixed;
    top: 0;
    left:0;
  }
  
.site-title{
  margin: 0;
  color: #ffffff;
  font-size:32px;
  
  }    
.site-title:hover{
  color: #FFD700;
  cursor:default;
  
  }  
  
  .avatar-box{
    position:fixed;
    top:100px;
    left:45px;
    width:600px;
    height:550px;
    background-color: white;
    border: 2px dashed white;
    border-radius:10px;
    
    }
  
  .sidebar{
    position:fixed;
    top:100px;
    right:45px;
    width:600px;
    
    }
    
    
    .about-box{
      background-color: white;
      padding:15px;
      margin-bottom:20px;
      border-radius:10px;
      box-shadow: 0 4px 6px rgba(0,0,0,0.1);
      
      }
      .links-box{
      background-color: white;
      padding:15px;
      margin-bottom:20px;
      border-radius:10px;
      box-shadow: 0 4px 6px rgba(0,0,0,0.1);
      }
     
.about-page{
  color: black;
  }

.left-column{
  position: fixed;
  top:120px;
  left:20px;
  width:250px;
  }
  
  .right-column{
    position:fixed;
    top: 120px;
    right:20px;
    width:300px;
    }
    
    .image-box{
    position:fixed;
    top:100px;
    left:45px;
    width:600px;
    height:550px;
    background-color: white;
    border: 2px dashed white;
    border-radius:10px;
    }
    
    .image-box,
.project-link-box,
.interests-box {
  background-color: white;
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 10px;
}

.project-link-box a {
  position:fixed;
    top:100px;
    left:45px;
    width:600px;
    height:550px;
    background-color: white;
    border: 2px dashed white;
    border-radius:10px;
}

.project-link-box a:hover {
  opacity: 0.85;
}

body.about-page {
  background-color: black;
  color: white;
}
/* ===== ABOUT PAGE OVERRIDES ===== */

body.about-page {
  background-color: black;
  color: white;
}

body.about-page .top-bar {
  background-color: #e3ccf4;
}

body.about-page a {
  color: white;
}
