body {
    font-family: 'Roboto', sans-serif;
    height: 100%;
    background-size: cover;
    background-color: #f2f2f2;
}

.rounded-0 {
    border-radius: 0;
}

/* original solution by https://codepen.io/Rowno/pen/Afykb */

.carousel-fade .carousel-inner .item {
    -webkit-transition-property: opacity;
    transition-property: opacity;
}
.carousel-fade .carousel-inner .item,
.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
    opacity: 0;
}
.carousel-fade .carousel-inner .active,
.carousel-fade .carousel-inner .next.left,
.carousel-fade .carousel-inner .prev.right {
    opacity: 1;
}
.carousel-fade .carousel-inner .next,
.carousel-fade .carousel-inner .prev,
.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
.carousel-fade .carousel-control {
    z-index: 2;
}

/* carousel fullscreen */

.carousel-fullscreen .carousel-inner .item {
    height: 100vh;
    min-height: 600px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* carousel fullscreen - vertically centered caption*/

.carousel-fullscreen .carousel-caption {
    top: 50%;
    bottom: auto;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
}

/* overlay for better readibility of the caption  */

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.3;
    transition: all 0.2s ease-out;
}

h1, h2, h3, h4 {
    font-weight: 700;
    text-align: center;
}

.super-heading {
    font-size: 70px;
    text-shadow: 20px, 12px, 2px, #333;
}


.super-paragraph {
    font-size: 20px;
    font-weight: 200;
}

.carousel-caption .super-paragraph a,
.carousel-caption .super-paragraph a:hover {
    color: #fff;
}

#carousel-example-generic {
    margin: 40px 0;
}

.mycontent {
    padding-left: 15%;
    padding-right: 15%;
    margin-top: 50px;
}

.hrstyle1 {
    border: none;
    margin: 0;
}

.hrstyle2 {
    border-bottom: 3px double #0026ff;
}

.cardheader {
    padding-top: 5px;
    padding-right: 20px;
    padding-bottom: 5px;
    padding-left: 20px;
    image-orientation: unset;
}


.darken {
    background-image: linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)),url("../img/IMG_0322.jpg");
    height: 100%;
    min-height: 960px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
}


.backg {
    min-height: 100vh;
}

.centered {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

footer {
    background-color: #337ab7;
    height: 16px;
    position: fixed;
    bottom: 0px;
    width: 100%;
    color: #337a00;
    margin-top: -10px;
    clear: both;
}

.col-md-6 {
    border: 1px solid #337ab7;
}

.col-md-6:hover {
    background-color: white;
}

.links {
    border: 5px dotted #337ab7;
}

    .links:hover {
        border: 5px dashed #4d4dff;
        background-color: white;
    }

.about-me p {
    text-align: justify;
}

.development img {
    width: 150px;
    max-height: 160px;
}

.development .container {
    margin-bottom: 20px;
}

.subheading {
    margin-top: 0;
}

.development .row {
    border: 5px dotted #337ab7;
    background-color: white;
}

.development .row:hover {
    border: 5px dashed #4d4dff;
    
}

.main-photo {
    width: 300px;
    border: 5px solid white;
    opacity: 1;
    transition: ease all 3s;
}
.main-photo:hover {
    opacity: 0;
}

@media (max-width: 400px) {
    h1.super-heading {
        font-size: 35px;
    }

    .main-photo {
        margin-top: 25%;
    }

    .darken {
        min-height: unset;
        height: 100vh;
    }
}

.modal-header .close {
    margin-top: unset;
    position: absolute;
    top: 10px;
}