@font-face {
    font-family: Chap;
    src: url(fonts/Chap-Regular.ttf);
}

.main-container {
    border: 30px solid #fff;
}

.top-header {
    padding-top: 2%;
}

.site-inner {
    padding: 0 3%;
    background-color: #f3dd45;
    height: 900px;
}

.left-header img {
    width: 20%;
}

.typewrite {
    font-family: "Chap";
}

.personal-info {
    height: 40%;
    text-align: left;
    position: relative;
}

.personal-info h1 {
    font-size: 80px;
    position: absolute;
    top: 50%;
}

.personal-info *,
.personal-info * :hover {
    text-decoration: none;
    color: #fff
}

.right-header {
    position: relative;
}

.cv-btn {
    height: 40px !important;
    width: 100px !important;
    font-size: 1.5em !important;
    position: absolute !important;
    top: 0 !important;
    right: 0 !important;
    margin-top: 2% !important;
    margin-right: 2% !important;
    padding: 0 !important;
    background: none;
    border: none;
    cursor: pointer;
    line-height: 1.5;
    font: 700 1.2rem 'Roboto Slab', sans-serif;
    padding: 0.75em 2em;
    letter-spacing: 0.05rem;
    margin: 1em;
    width: 13rem;
}

.cv-btn:hover {
    background-color: white;
    color: black;
}

.cv-btn:focus {
    outline: 2px dotted #55d7dc;
}

.bg-image {
    /* Full height */
    height: 100%;
    /* Center and scale the image nicely */
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.skills {
    font-family: "Chap";
    padding: 0 3%;
    background-color: #2a79b8;
    height: auto;
    padding-bottom: 5%;
    padding-top: 2%;
    margin: 0px;
}

.wrapper {
    position: relative;
    background: #e7f0f7;
}

.outerbar {
    text-align: right;
    font-family: "Chap";
    color: black;
    display: block;
    position: relative;
    z-index: 9;
    margin: auto;
    background-color: #16619eaf;
    border-radius: 15px;
    width: 400px;
    height: 20px;
}

.progressbar {
    display: block;
    position: absolute;
    z-index: 9;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    height: 20px;
}

.progressbar::before,
.progressbar::after {
    content: '';
    display: block;
    position: absolute;
    z-index: 99;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    background-image: -webkit-gradient(linear, left top, right top, from(#e91e63), color-stop(20%, #e91e63), color-stop(20%, #03a9f4), color-stop(40%, #03a9f4), color-stop(40%, #8bc34a), color-stop(60%, #8bc34a), color-stop(60%, #ffeb3b), color-stop(80%, #ffeb3b), color-stop(80%, #ff5722), to(#ff5722));
    background-image: linear-gradient(90deg, #e91e63 0%, #e91e63 20%, #03a9f4 20%, #03a9f4 40%, #8bc34a 40%, #8bc34a 60%, #ffeb3b 60%, #ffeb3b 80%, #ff5722 80%, #ff5722 100%);
    background-position: 0 0;
    background-repeat: repeat-x;
    -webkit-animation: movebar 5s linear infinite;
    animation: movebar 5s linear infinite;
}

.progressbar::before {
    box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.1);
}

.progressbar::after {
    z-index: 9;
    top: 6px;
    -webkit-filter: blur(16px);
    filter: blur(16px);
    opacity: 0.7;
}

.progressbox {
    margin-top: 2%;
}

@-webkit-keyframes movebar {
    from {
        background-position: 0 0;
    }
    to {
        background-position: 400px 0;
    }
}

@keyframes movebar {
    from {
        background-position: 0 0;
    }
    to {
        background-position: 400px 0;
    }
}

.contactme {
    background-image: url("img/bg.png");
    background-size: cover;
    background-position: center;
    height: 900px;
    margin: 0px;
}

.lightbox-content {}

.card {
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    border: 0px;
    background-color: transparent;
}

.card__name {
    margin-top: 15px;
    font-size: 1.5em;
}

.card__image {
    height: 160px;
    width: 160px;
    border-radius: 50%;
    border: 3px solid #572574;
    margin-top: 20px;
    box-shadow: 0 10px 50px #7f3aa7;
}

.draw-border {
    box-shadow: inset 0 0 0 4px #58cdd1;
    color: #58afd1;
    -webkit-transition: color 0.25s 0.0833333333s;
    transition: color 0.25s 0.0833333333s;
    position: relative;
}

.draw-border::before,
.draw-border::after {
    border: 0 solid transparent;
    box-sizing: border-box;
    content: '';
    pointer-events: none;
    position: absolute;
    width: 0rem;
    height: 0;
    bottom: 0;
    right: 0;
}

.draw-border::before {
    border-bottom-width: 4px;
    border-left-width: 4px;
}

.draw-border::after {
    border-top-width: 4px;
    border-right-width: 4px;
}

.draw-border:hover {
    color: #ffe593;
}

.draw-border:hover::before,
.draw-border:hover::after {
    border-color: #270f3b;
    -webkit-transition: border-color 0s, width 0.25s, height 0.25s;
    transition: border-color 0s, width 0.25s, height 0.25s;
    width: 100%;
    height: 100%;
}

.draw-border:hover::before {
    -webkit-transition-delay: 0s, 0s, 0.25s;
    transition-delay: 0s, 0s, 0.25s;
}

.draw-border:hover::after {
    -webkit-transition-delay: 0s, 0.25s, 0s;
    transition-delay: 0s, 0.25s, 0s;
}

.social-icons {
    padding: 0;
    list-style: none;
    margin: 1em;
}

.social-icons li {
    display: inline-block;
    margin: 0.15em;
    position: relative;
    font-size: 1em;
}

.social-icons i {
    color: #fff;
    position: absolute;
    top: 1.1em;
    left: 1.18em;
    transition: all 265ms ease-out;
}

.social-icons a {
    display: inline-block;
}

.social-icons a:before {
    transform: scale(1);
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    content: " ";
    width: 45px;
    height: 45px;
    border-radius: 100%;
    display: block;
    background: linear-gradient(45deg, #1c8a99, #572574);
    transition: all 265ms ease-out;
}

.social-icons a:hover:before {
    transform: scale(0);
    transition: all 265ms ease-in;
}

.social-icons a:hover i {
    transform: scale(2.2);
    -ms-transform: scale(2.2);
    -webkit-transform: scale(2.2);
    color: #572574;
    background: -webkit-linear-gradient(45deg, #1c8a99, #572574);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 265ms ease-in;
}

.grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
    font-size: 1.2em;
}

.nowplaying {
    font-size: 120px;
    line-height: 1;
    color: #eee;
    text-shadow: 0 0 5rem #028ae9;
    transition: all .07s ease;
}

.keys {
    display: block;
    width: 100%;
    height: 350px;
    max-width: 750px;
    position: relative;
    margin: auto;
    cursor: none;
    text-align: center;
}

.key {
    position: relative;
    border: 4px solid black;
    border-radius: .5rem;
    transition: all .07s ease;
    display: block;
    box-sizing: border-box;
    z-index: 2;
}

.key:not(.sharp) {
    float: left;
    width: 10%;
    height: 100%;
    background: rgba(255, 255, 255, .8);
}

.key.sharp {
    position: absolute;
    width: 6%;
    height: 60%;
    background: #000;
    color: #eee;
    top: 0;
    z-index: 3;
}

.key[data-key="87"] {
    left: 7%;
}

.key[data-key="69"] {
    left: 17%;
}

.key[data-key="84"] {
    left: 37%;
}

.key[data-key="89"] {
    left: 47%;
}

.key[data-key="85"] {
    left: 57%;
}

.key[data-key="79"] {
    left: 77%;
}

.key[data-key="80"] {
    left: 87%;
}

.playing {
    transform: scale(.95);
    border-color: #028ae9;
    box-shadow: 0 0 1rem #028ae9;
}

.hints {
    display: block;
    width: 100%;
    opacity: 0;
    position: absolute;
    bottom: 7px;
    transition: opacity .3s ease-out;
    font-size: 20px;
}

.keys:hover .hints {
    opacity: 1;
}

.music-skill h2 {
    text-align: center;
    font-family: "Chap";
    color: #fbe132;
}

.lightbox-content {
    width: 600px;
    padding: 40px;
    background: #fff;
    font-style: normal;
}

.form-wrapper .field-list .field .field-element {
    width: 100%;
    padding: 12px;
    margin: 6px 0 4px;
    border: 1px solid #ccc;
    background: #fafafa;
    color: #000;
    font-family: "Chap";
    font-size: 12px;
    line-height: normal;
    box-sizing: border-box;
    border-radius: 2px;
}

.form-item input,
textarea {
    background: #f5df57 !important;
    border: none !important;
    border-radius: none !important;
}

.form-title {
    font-size: 28px !important;
    font-family: "Chap";
    font-weight: bold;
    margin: 15px 0;
}

.form-item .title {
    padding: 0px;
    margin: 10px 0px;
    width: 100%;
    font-size: 14px;
    text-transform: none;
    font-style: normal;
    text-decoration: none;
}

.contact-btn {
    margin: 10px 0 !important;
    width: 150px;
    height: 40px;
    font-family: "Chap";
    box-shadow: inset 0 0 0 4px #0f6fdd !important;
    color: #0f6fdd !important;
}