.flat-font {
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5em;
    font-size: 0.75em;
}

.flat-font-thin {
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5em;
    font-size: 0.75em;
}

.container-insider {
    margin-left: 1em;
    margin-right: 1em;
}

p {
    font-family: 'Raleway', sans-serif;
    font-weight: 300;

}

.navbar {
    background-color: white;
}

.nav-container > a {
    margin-top: 1em;
    margin-bottom: 1em;
}

.nav-block > a {
    margin-left: 3em;
}

.clean {
    text-decoration: none;
    color: black;
}

.cover {
    height: calc(100vh - 2em);
}

.white {
    color: white;
    font-weight: 400;

}

.heading {
    font-family: 'Playfair Display', serif;
}

.bg-img {
    background-image: url(https://images.pexels.com/photos/640947/pexels-photo-640947.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2);
    background-position: center;
    background-size: cover;
    filter: grayscale() contrast(120%) brightness(0.5);
    position: absolute;
    width: calc(100vw - 1.5em);
    height: calc(100vh - 1.5em);
    margin: 0.75em;
    top: 0;
    z-index: -1;
}

.main-button {
    margin-top: 1em;
    /* min-width: 15em; */
    border: 1px solid white;
    padding: 1em;
    background-color: rgba(255, 255, 255, 1);
    color: rgba(0, 0, 0, 1);
    cursor: pointer;
    transition: 0.2s;
}

.main-button:hover {
    /* min-width: 15em; */
    border: 1px solid white;
    padding: 1em;
    background-color: rgba(255, 255, 255, 0);
    color: rgba(255, 255, 255, 1);
}

.top-space {
    padding-top: 4em;
    padding-bottom: 4em;

}

.sec-button {
    margin-top: 1em;
    /* min-width: 10em; */
    border: 1px solid white;
    padding: 1em;
    background-color: rgba(255, 255, 255, 0);
    color: rgba(255, 255, 255, 1);
    
    cursor: pointer;
    transition: 0.2s;
}

.sec-button:hover {
    /* min-width: 15em; */
    border: 1px solid white;
    padding: 1em;
    background-color: rgba(255, 255, 255, 1);
    color: rgba(0, 0, 0, 1);
}

.sec-button-inv {
    margin-top: 1em;
   
    /* min-width: 10em; */
    border: 1px solid black;
    padding: 1em;
    background-color: rgba(0, 0, 0, 0);
    color: rgba(0, 0, 0, 1);
    
    cursor: pointer;
    transition: 0.2s;
}

.sec-button-inv:hover {
    /* min-width: 15em; */
    border: 1px solid black;
    padding: 1em;
    background-color: rgba(0, 0, 0, 1);
    color: rgba(255, 255, 255, 1);
}



.vline {
    position: absolute;
    width: 200px;
    height: calc(70vh);
    transform: translateY(-55%) translateX(-50%);
    /* background-color: red; */
}

.vline:before {
    content: "";
    position: absolute;
    width: 0.5px;
    height: calc(70vh);
    left: 50%;
    /* transform: translateY(-55%); */
    transition: 0.2s;
    background-color: rgba(255, 255, 255, 0.7);
}

.vline:hover::before {
    transform: translateX(20px);

}

.inv-bg {
    background-color: black;
    color: white;
}

.skill-cards {
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1.5em;
    /* padding-bottom: 0em; */
    margin-bottom: 2em;
    background-color: rgba(255, 255, 255, 0.05);
    transition: 0.2s;
    /* height: 100%; */
}

@media only screen and (min-width : 992px) {
    .skill-cards {
        padding-bottom: 0;
        height: 100%;
    }
}

.skill-cards:hover {
    border: 1px solid rgba(255, 255, 255, 0.5);
    background-color: rgba(255, 255, 255, 0.1);

}


.pill-holder {
    width: 100%;
    margin-top: 1em;
    /* background-color: red; */
    display: flex;
    flex-wrap: wrap;
}

.pill {
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.3em 1em;
    /* background-color: rgba(255, 255, 255, 0.1); */
    margin-right: 0.5em;
    margin-bottom: 0.5em;
    font-family: 'Raleway', sans-serif;
    
    transition: 0.2s;
}

.pill:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.project-base{
    margin-top: 1em;
    border: 1px solid rgba(0, 0, 0, 0.2);
    padding: 1.5em;
}

input[type="text"], input[type="email"], textarea {
    width: 100%;
    color: white;
    background-color: rgba(0,0,0,0);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.3em 0.5em;
    margin-top: 0.5em;
    
}