@font-face {
    font-family: "Roboto";
    src: url("../fonts/Roboto/Roboto-Regular.ttf");
}

@font-face {
    font-family: "Roboto-thin";
    src: url("../fonts/Roboto/Roboto-Thin.ttf");
}

@font-face {
    font-family: "Roboto-Medium";
    src: url("../fonts/Roboto/Roboto-Medium.ttf");
}

@font-face {
    font-family: "Roboto-Light";
    src: url("../fonts/Roboto/Roboto-Light.ttf");
}

@keyframes wheelHueColor {
    from,
    to {
        border-bottom-color: #71fff8;
    }
    10% {
        border-bottom-color: #58c0bb
    }
    20% {
        border-bottom-color: #58c086
    }
    30% {
        border-bottom-color: #53bc60
    }
    40% {
        border-bottom-color: #4eac43
    }
    50% {
        border-bottom-color: #35852c
    }
    60% {
        border-bottom-color: #3dac31
    }
    70% {
        border-bottom-color: #33ba5c
    }
    80% {
        border-bottom-color: #36d190
    }
    90% {
        border-bottom-color: #71fff8
    }
}

body,
html {
    height: 100%;
    margin: 0;
    font-family: "Roboto";
    font-stretch: semi-condensed;
    background-color: #F8F8F8;
}

#bg-body {
    background-image: url(../img/back4.3.png);
    background-size: cover;
    min-height: 1800px;
    height: 100%;
    margin-bottom: 0;
    overflow: hidden;
    background-position: center;
    background-repeat: no-repeat;
}

#block-default {
    max-width: 1200px;
    background-color: rgba(0, 0, 0, 0.16);
    left: 400px;
    margin: 0 auto;
    margin-top: 13%;
    border: 1px solid #71fff8;
    border-radius: 3px;
    transition: 500ms ease-out;
    animation: fadein 2s;
}

#block-default:hover {
    border: 1px solid #ffffff;
    background: rgba(255, 255, 255, 0);
}

#bg-name {
    text-align: center;
    font-size: 70px;
    display: block;
    top: 35%;
    position: relative;
    color: #cbcbcb;
    font-weight: bold;
    padding: 200px 250px 200px 250px;
}

#bg-title {
    text-align: center;
    font-size: 30px;
    display: block;
    position: relative;
    color: #cbcbcb;
    top: -190px;
}

#border-title-bottom {
    border-bottom: 0.01em solid;
    display: block;
    position: relative;
    color: #cbcbcb;
    top: -170px;
    width: 600px;
    left: 300px;
}

#border-title-top {
    border-top: 0.01em solid;
    display: block;
    position: relative;
    color: #cbcbcb;
    top: 185px;
    width: 600px;
    left: 300px;
}

#block-profil {
    position: relative;
    left: 15%;
    top: 100px;
    background: rgba(0, 0, 0, 0.16);
    width: 70%;
    border: 1px solid #71fff8;
    display: flex;
    border-radius: 3px;
    transition: 500ms ease-out;
    animation: fadein 2s;
}

@keyframes fadein {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

#block-profil:hover {
    border: 1px solid white;
    background: rgba(255, 255, 255, 0);
}

#block-profil img {
    height: 400px;
    padding: 28px;
    float: left;
}

#profil-text {
    color: #cbcbcb;
    font-size: 20px;
    font-family: "Roboto-Light";
}

#profil-text a {
    text-decoration: none;
    color: #71fff8;
}

.text-muted {
    font-size: 15px;
    color: #ffffff;
    margin-top: 5px;
}


/* NAVBAR */

header {
    font-size: 100%;
    line-height: 1.6;
    box-sizing: border-box;
    padding: 0;
    box-shadow: inset 0 0 6px rgba(13, 13, 13, 0.15);
    color: #fff;
    margin: 0;
    height: 80px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 60;
    display: block;
    transform: translateY(0px);
    background-color: rgba(0, 0, 0, 0.16);
    border-bottom: 1px solid #71fff8;
}

header a {
    float: right;
    color: #d1d1d1;
    text-align: center;
    padding: 0px 25px;
    text-decoration: none;
    font-size: 20px;
    padding-top: 25px;
    text-transform: uppercase;
    letter-spacing: 4px;
    padding-bottom: 22px;
    transition: border 1s ease-out;
}

header a:hover {
    /* border-bottom: 1px solid #ffffff; */
    color: white;
    /* background-color: #ffffff1a; */
    /* box-shadow: 0px 0px 20px #71fff8; */
    transition: 0.5s ease-out;
}

header .left {
    float: left;
    text-transform: none;
    font-size: 25px;
    padding-top: 20px;
    letter-spacing: 3px;
    padding-bottom: 19px;
}

footer {
    position: relative;
    bottom: 0;
    width: 100%;
    height: 1.2em;
    background-color: rgb(29, 29, 29);
    text-align: center;
    border-top: 1px solid #71fff8;
    padding-top: 7px;
    padding-bottom: 3px;
    color: #cbcbcb;
}

.container {
    margin-left: 50px;
    margin-right: 50px;
    padding-bottom: 2.5rem;
    margin-top: 160px;
}

.page-container {
    position: relative;
    min-height: 100%;
    margin-bottom: 50px;
}

@media screen and (min-width: 971px) and (max-width: 1400px) {
    #bg-body {
        min-height: 1500px;
    }
    #block-default {
        max-width: 900px;
    }
    #border-title-top {
        left: 150px;
        top: 85px;
    }
    #border-title-bottom {
        left: 150px;
        top: -70px;
    }
    #bg-name {
        padding: 100px 150px 100px 150px;
        font-size: 50px;
    }
    #bg-title {
        top: -90px;
        font-size: 25px;
    }
    #block-profil img {
        height: 300px;
    }
    #profil-text {
        font-size: 20px;
    }
    header a {
        font-size: 15px;
        padding: 35px 15px;
        letter-spacing: 2px;
    }
    header a:hover {
        border-bottom: none;
    }
}

@media screen and (min-width: 451px) and (max-width: 970px) {
    #bg-body {
        min-height: 1500px;
    }
    #block-default {
        max-width: 600px;
    }
    #border-title-top {
        left: 90px;
        top: 50px;
        width: 400px;
    }
    #border-title-bottom {
        left: 90px;
        top: -30px;
        width: 400px;
    }
    #bg-name {
        padding: 70px 120px 70px 120px;
        font-size: 40px;
    }
    #bg-title {
        top: -50px;
        font-size: 20px;
    }
    #block-profil {
        display: block;
    }
    #block-profil img {
        height: 200px;
    }
    #profil-text {
        font-size: 15px;
        padding: 10px;
    }
    header {
        height: 50px;
    }
    header a {
        font-size: 10px;
        padding: 18px 5px;
        letter-spacing: 2px;
        padding-bottom: 15px;
    }
    header .left {
        display: grid;
        font-size: 0px;
        padding: 13px 10px;
        padding-bottom: 12px;
    }
    header .left:after {
        content: "AN";
        font-size: 15px;
    }
    .page-container {
        top: 0px;
    }
}

@media screen and (min-width: 200px) and (max-width: 450px) {
    #bg-body {
        min-height: 1500px;
    }
    #block-default {
        max-width: 250px;
        margin-top: 23%;
    }
    #border-title-top {
        left: 40px;
        top: 40px;
        width: 175px;
    }
    #border-title-bottom {
        left: 40px;
        top: -40px;
        width: 175px;
    }
    #bg-name {
        padding: 50px 50px 50px 50px;
        font-size: 20px;
    }
    #bg-title {
        top: -50px;
        font-size: 20px;
    }
    #block-profil {
        display: block;
        top: 50px;
    }
    #block-profil img {
        height: 200px;
    }
    #profil-text {
        font-size: 15px;
        padding: 10px;
    }
    header {
        height: 50px;
    }
    header a {
        font-size: 9px;
        padding: 18px 5px;
        letter-spacing: 0px;
        padding-bottom: 15px;
    }
    header .left {
        display: grid;
        font-size: 0px;
        padding: 13px 10px;
        padding-bottom: 12px;
    }
    header .left:after {
        content: "AN";
        font-size: 15px;
    }
    .page-container {
        top: 0px;
    }
}