/* BASIC FORMATTING */

body {
    background-image: url(portfoliobg.png);
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    margin: 25px 200px;
    padding: 10px;
}

h1 {
    text-align: center;
    color: rgb(250, 250, 255);
}

h2 {
    text-align: center;
    color: rgb(250, 250, 255);
}

p {
    color: rgb(250, 250, 255);
}

b {
    color: rgb(250, 250, 255);
}

/* LINK STUFF */

a:link {
    color:rgb(164, 195, 226)
}

a:visited {
    color:rgb(23, 43, 117)
}

a:hover {
    color:rgb(37, 41, 126)
}

a:active {
    color:rgb(0, 204, 44)
}

/* SOLID COLOR BACKGROUND */

.marginthing {
    background-color: rgb(121, 127, 144);
    padding: 25px;
    border-radius: 30px;
    border-style: solid;
    border-color: rgb(228, 217, 255);
}

.project {
    background-color: #20203d;
    padding: 25px;
    border-radius: 15px;
    border-style: solid;
    border-color: rgb(228, 217, 255);
    img {
        float: right;
    }
    overflow: hidden;
}

.slideshow-container {
  /*max-width: 1000px;
  /*position: relative;
  /*margin: auto;*/
  img {
    float: right
  }
}

.mySlides {
  /*display: none;*/
  img {
    float: right
  }
}

.hide-on-startup {
    display: none;
}

.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

/* CENTERED NAVIGATION STUFF */

.centered {
    text-align: center;
}

.rightaligned {
    text-align: right;
}

.signature {
    text-align: right;
    margin-right: 150px;
}

/* SIDE NAV */

.sidenav {
    height: 100%;
    width: 150px;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: #00000081;
    overflow-x: hidden;
    padding-top: 20px;
  }
  .sidenav a {
    padding: 6px 6px 6px 10px;
    text-decoration: none;
    font-size: 25px;
    color: #ffffff;
    display: block;
  }
  
  .sidenav a:hover {
    color: #969696;
  }
  
  .main {
    margin-left: 200px; /* Same as the width of the sidenav */
  }
  
  @media screen and (max-height: 450px) {
    .sidenav {padding-top: 15px;}
    .sidenav a {font-size: 18px;}
  }

  /* BLOG */

  div.blogpost {
    h3 {
        color: rgb(250, 250, 255);
    }
    p {
        color: rgb(250, 250, 255);
    }
    background-color: rgb(82, 87, 100);
    padding: 10px;
    border-style: solid;
    border-radius: 10px;
    border-color: rgb(228, 217, 255);
}
div.updatesadded {
    background-color: rgb(34, 153, 52);
    p {
        color:rgb(250, 250, 255)
    }
}
div.updatesedited {
    background-color: rgb(199, 176, 0);
    p {
        color:rgb(250, 250, 255)
    }
}