body {
    margin: 0;
    padding: 0;
    background-color: cyan;
    overflow-x: hidden;
}

* {
    box-sizing: border-box;
}

/* Header */

header h1 {
    font-size: 7rem;
    font-family: 'Viaoda Libre', cursive;
    text-shadow: 4px 0 3px rgb(61, 47, 47);
    padding: 0;
    margin: 0;
    text-align: center;
}

/* showcase */
.showcase {
    height: 100vh;
    width: 100vw;
    margin-bottom: 3rem;
}

/*midshowcase*/

.mid-showcase {
    margin-top: 0rem;
}

.mid-showcase .btn-hire {
    text-decoration: none;
    color: white;
    padding: 0 0.5rem;
    margin: 0;
    font-weight: bold;
    background-color: cyan;
    color: rgba(38, 0, 255, 0.904);
    border: 2px solid rgba(38, 0, 255, 0.904);
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 2;
    transition: color 0.3s, background-color 0.3s;


}

.mid-showcase .btn-hire:hover {
    background-color: rgba(38, 0, 255, 0.904);
    color: white;
}

.mid-showcase .text {
    width: 50%;
    line-height: 4rem;
    float: left;
    font-size: 1.7rem;
    padding: 0 0 0 2rem;
}

.mid-showcase h1 {
    margin-right: 0;
    padding-right: 0;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;

}

.mid-showcase .main-img {
    width: 50%;
    /* background-color: chartreuse; */
    height: auto;
    float: right;
}

.mid-showcase .main-img img {

    width: 100%;
    height: auto;
}

.mid-showcase .hi {
    color: rgba(38, 0, 255, 0.904);
}

.mid-showcase .job {
    text-decoration: underline;
    font-size: 1.9rem;
    margin: 0;
    text-align: right;
    font-variant: small-caps;
}

/* Section--about */

.about {
    font-family: Georgia, 'Times New Roman', Times, serif;
    background-color: ivory;
    padding: 2rem;
    font-size: 1.5rem;
    line-height: 2.2rem;
    width: 85%;
    margin: auto auto 8rem auto;
    border-radius: 5px;
    box-shadow: 0 0 5px -2px gray;
}


/* section--Projects */

.projects-sec {
    box-shadow: 0 0 5px -3px gray;
    border-radius: 5px;
    width: 85%;
    background-color: white;
    margin: auto;

}

.projects-sec h1 {
    padding: 0.4rem;
    text-align: center;
    font-size: 2.5rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    text-decoration: overline;
}

.projects {
    padding: 2rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 2rem;
}

.project {
    height: 300px;
    position: relative;
    background-color: black;
}

.project .site-img {
    opacity: 1;
    width: 100%;
    height: 100%;
    transition: .5s ease;
}

.project .site-link {
    opacity: 0;
    text-decoration: none;
    background-color: rgb(18, 59, 194);
    color: white;
    padding: 10px;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transition: .5s ease;
}

.project:hover .site-link {
    opacity: 1;
}

.project:hover .site-img {
    opacity: 0.3;
}


/* footer */
footer {
    margin: 3rem 0 0 0;
    background-color: black;
    color: cyan;
    padding: 0.7rem;
    text-align: right;
    font-weight: bold;
    letter-spacing: 2px;
    word-spacing: 4px;
}

footer p {
    font-size: 2rem;
    text-align: center;
    font-weight: lighter;
