/* general formatting */
body {
  font-family: arial, helvetica, sans-serif;
}
* {box-sizing: border-box;}

html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  color: #ffffff;
  background-attachment: fixed;
  background-image: url("./background.jpg");
  background-color: #180b24;
  background-blend-mode: multiply;
}

.webpage {
  height: 100%;
  max-width: 1000px;
  row-gap: 20px;
  display: flex;
  flex-direction: column;
  margin-left: auto;
  margin-right: auto;
  background-color: #ff000000;
  color: #000000;
}

/* screen adjustment */
@media screen and (max-width: 700px){
  .row{
    flex-direction: column;
  }
}
@media screen and (max-width: 400px){
  .navbar a {
    float: none;
  }
}

/* header formatting */
.header {
  text-align: center;
  background: #774499;
  width: 100%;
  color: white;
  padding: 10px;
  filter: drop-shadow(2px 2px 10px black);
}
.header h0 {
  font-size: 40px;
}

/* navbar formatting */
.navbar {
  background-color: #333;
  position: sticky;
  top: 0;
  display: flex;
  filter: drop-shadow(0px 0px 10px black);
  height: 50px;
  z-index: 10000;
  margin-top:20px;
}
.navbar .left{
  display: flex;
  flex-direction: row;
  align-items: center;
  padding-left: 10px;
  column-gap: 10px;
  width: 70%;
}

.navbar .right{
  float: right;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  padding-right: 10px;
  column-gap: 10px;
  width: 30%; 
}

.navbar a {
  display: flex;
  align-items: center;
  text-align: center;
  color: white;
  height: 100%;
  padding: 0px 10px;
  text-decoration: none;
}

.navbar a:hover {
  background-color: #ddd;
  color: black;
}

/* footer formatting */
.footer {
  padding: 20px;
  text-align: center;
  background-color: #774499;
  filter: drop-shadow(0px 0px 10px black);
}

/* table formatting */
.row {
  display: flex;
  
  column-gap: 20px;

}

.side {
  flex: 30%;
  background-color: #060606;
  color: #ffffff;
  padding: 20px;
  filter: drop-shadow(0px 0px 10px black);
}
.main {
  flex: 70%;
  background-color: #111111;
  color: #ffffff;
  padding: 20px;
  filter: drop-shadow(0px 0px 10px black);
}

/* Portfolio assets */
.port-row{
  display:flex;
  flex-direction:row;
  column-gap:10px;
  flex-wrap:wrap;
}
.port-frame{
  display:flex;
  flex-direction:column;
  flex:30%;
  row-gap:5px;
}
.port-role{
  display:flex;
  flex:50%;
  justify-content:flex-start;
}
.port-release{
  display:flex;
  flex:50%
  justify-content:flex-end;
}

.blog-panel {
  border-style:none;
  width:100%;
  height:500px;
}

.blog-panel h5 {
  font-style: italic;
  color: #cccccc;
}

/* Shelved assets */
/* slideshow formatting 
* currently unused, but I might bring it back */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}
.myslides {
  display: none;
}
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -24px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.5s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}
.prev:hovver, .next:hover {
  background-color: rgba(0,0,0,0.8);
}
.text {
  color: #f2f2f2;
  font-size: 14px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}
.numbertext{
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.5s ease;
}
.active, .dot:hover {
  background-color: #717171;
}
.fade {
  animation-name: fade;
  animation-duration: 0.5s;
}
@keyframes fade {
  from {opacity: 0.4}
  to {opacity: 1}
}


