/* Navbar Styling */
* {
    -webkit-transition: all;
	-webkit-transition-duration: .2s;
    -moz-transition-timing-function: cubic-bezier(100,50,21,6);
	-moz-transition-property: all;
    -moz-transition-timing-function: cubic-bezier(100,50,21,6);
}

h1{
    color:#c0c0c0;
    font-weight:100;
}

body {
    background-color: #141414e5;
    color: white;
    font-family: 'Oswald', sans-serif;
    text-align: center;
}

/* Button CSS */
.btn{
    color:#999;
    background:rgba(0, 0, 0, 0.5);
    font-size:16px;
    text-decoration:none;
    letter-spacing:2px;
    margin-bottom: 15px;
    padding:10px 20px;
    text-transform:uppercase;
}

.btn:hover, .detail-btn:hover, .prj-btn:hover {
  border: none;
  background: rgba(0, 0, 0, 0.4);
  background: #fff;
  color: #1b1b1b;
  padding: 20px 20px #000;
}

.detail-btn {
    border: 1px solid transparent;
    border-radius: .25rem;    color: #999;
    background: rgba(0, 0, 0, 0.5);
    color:#999;
    font-size: 16px;
    margin: 10px;
    padding: 10px 20px;
    text-decoration: none;
    text-transform: uppercase;
}

.prj-btn {
    border: 1px solid transparent;
    border-radius: .25rem;
    color:#999;
    background:rgba(0, 0, 0, 0.5);
    padding:10px 20px;
    margin-top: 4px;
    font-size:16px;
    text-decoration:none;
    letter-spacing:2px;
    text-transform:uppercase;
    width: 80%;
}


/* Cards */
.card {
    border: 1px solid black;
}

.card-body {
    background-color: #f7f4f4e0;
    color: black;
}

.card-header {
    background-color: rgb(87, 87, 87);
}

.card-title {
    text-align: center;
}

/* Alphabetical for now */
.about-me {
    display: inline-block;
}

.about-section {
    font-size: 20px;
}

hr {
    background-color: white;
}

.profile-col {
    border-right: 1px solid white;
}

.profile-pic {
    padding: 0;
}

.software {
    border-left: 1px solid white;
}

/* Bootstrap CSS */
.column {
    flex: 25%;
    max-width: 25%;
    padding: 0 4px;
}

.column img {
    margin-top: 8px;
    vertical-align: middle;
}

.row {
    display: flex;
    flex-wrap: wrap;
    padding: 0 4px;
    /* margin-top: 15px; */
}


/* Testing */
.container {
    border: 1px solid white;
    margin: 0 auto;
    padding: 0;
}

.col-md-4, .col-md-2, .col-md-7, .col-md-3 {
    /* border-right: 1px solid white; */
    margin: 0 auto;
}


/* Video Player */
.video-responsive {
    height:0;
    margin-top: 15px;
    overflow:hidden;
    padding-bottom:56.25%;
    position:relative;
}
.video-responsive iframe {
    height:100%;
    left:0;
    position:absolute;
    top:0;
    width:100%;
}

/* Responsive layout - makes a two column-layout instead of four columns */
@media screen and (max-width: 800px) {
    .column {
      flex: 50%;
      max-width: 50%;
    }
  }
  
  /* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
  @media screen and (max-width: 600px) {
    .column {
      flex: 100%;
      max-width: 100%;
    }
  }
