body, html {
    background-color: #2A2E31;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

#overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #0000000a;
    z-index: 990;
    display: none;
    transition: all 0.5s ease-in-out 0.6s;
}

.wrapper {
    width: 80%;
    margin: auto;
    padding-top: 300px;
    padding-bottom: 0px;
    transition: all 0.5s ease-in-out 0.6s;
}

.accounts-container {
    margin-top: 30px;
}

.accounts-container a {
    text-decoration: none;
}

.accounts {
    margin: 10px;
    cursor: pointer;
    fill: #ffffffd0;
    width: 20px;
}

.medium {
    width: 22px;
}

.accounts:hover {
    fill: #83BBE6;
    transition-duration: 0.3s;
}

.section {
    width: 100%;
    text-align: center;
    padding-bottom: 20px;
    box-sizing: border-box;
}

* {
    box-sizing: border-box;
}

h4, p, a {
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.intro {
    width: 475px;
    margin: auto;
    margin-bottom: 0px;
    font-family: "Work Sans", sans-serif;
    font-weight: 300;
    font-size: 24px;
    line-height: 28px;
    text-align: center;
    color: #FFFFFF;
}

.intro span {
    font-weight: 400;
}

.dribbble-id {
    position: relative;
    display: flex;
    width: 150px;
    margin: auto;
    justify-content: center;
    margin-top: 20px;
}

.dribbble-id p {
    margin: 0px;
    font-family: Work Sans;
    font-weight: 300;
    font-size: 16px;
    line-height: 19px;
    color: rgba(255, 255, 255, 0.75);
}

.dribbble-id img {
    width: 17px;
    margin: 0px 10px 0px 0px;
}

.buttons-div {
    width: 50%;
    margin: auto;
    margin-top: 20px;
}

.btn {
    font-family: "Work Sans", sans-serif;
    font-size: 16px;
    line-height: 19px;
    font-weight: 300;
    text-decoration: none;
    color: #ffffffd0;
    background-color: #2A2E31;
    border: 1px #ffffffd0 solid;
    border-radius: 40px;
    padding: 12px 30px;
    cursor: pointer;
    margin-top: 20px;
    transition: all .3s ease-in-out 0s;
}

.btn:hover {
    /*box-shadow: 0px 4px 36px 15px rgba(0,0,0,0.2);*/
    transform: translateY(-2px);
}

.btn:focus {
    outline: none;
}

.heading {
    font-family: "Ubuntu", sans-serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 41px;
    letter-spacing: 0.065em;
    text-transform: uppercase;
    color: #2A2E31;
    text-shadow:
    -1px -1px 0 rgba(255, 255, 255, 0.5),
    1px -1px 0 rgba(255, 255, 255, 0.5),
    -1px 1px 0 rgba(255, 255, 255, 0.5),
    1px 1px 0 rgba(255, 255, 255, 0.5);
    margin: 0px;
}

.about-me {
    margin-top: 120px;
}

.about-container {
    display: flex;
    justify-content: center;
    margin-top: 60px;
}

.image-container {
    margin-left: 100px;
}

.image {
    text-align: left;
}

.image img {
    filter: grayscale(100%);
    transition: all .3s ease-in-out 0s;
}

.image img:hover {
    filter: none;
}

@media (any-hover: none) {
    .image img {
        filter: none;
    }
}

.detail {
    position: relative;
    display: flex;
    margin-top: 10px;
}

.detail img {
    height: 20px;
    margin: 0px 10px 0px 0px;
}

.link {
    margin: 0px;
    position: relative;
    font-family: Work Sans;
    font-weight: 300;
    font-size: 16px;
    line-height: 19px;
    letter-spacing: 0.4px;
    color: #83BBE6;
    text-decoration: none;
}

.link::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color:rgb(124, 153, 175);
    visibility: hidden;
    transform: scaleX(0);
    transform-origin: left;
    transition: all 0.3s ease-in-out 0s;
}

.link:hover::before {
    visibility: visible;
    transform: scaleX(1);
}

.detail p {
    text-align: left;
    margin: 0px;
    font-family: Work Sans;
    font-weight: 300;
    font-size: 16px;
    line-height: 19px;
    color: rgba(255, 255, 255, 0.75);
}

.text-container {
    width: 440px;
    margin-left: 100px;
}

.text-container p {
    font-family: "Work Sans", sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 21px;
    color: rgba(255, 255, 255, 0.75);
    margin: 0px 0px 15px 0px;
    text-align: left;
}

.works {
    margin-top: 120px;
}

.work-container {
    display: flex;
    align-items: center;
    padding-top: 100px;
}

.work-text {
    text-align: left;
    width: 40%;
    padding-right: 0px;
    padding-left: 0px;
}

.work-text a {
    font-family: "Work Sans", sans-serif;
    font-weight: 500;
    font-size: 24px;
    line-height: 28px;
    text-align: left;
    text-shadow: none;
    text-transform: uppercase;
}

.work-text p {
    width: 90%;
    font-family: "Work Sans", sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 21px;
    color: rgba(255, 255, 255, 0.75);
    margin: 20px 0px 15px 0px;
    text-align: left;
}

.work-image {
    width: 60%;
}

.work-image img {
    width: 100%;
}

.alt-work {
    flex-direction: row-reverse;
}

.alt-text {
    padding-left: 0px;
    padding-right: 0px;
    justify-content: flex-end;
}

.alt-image {
    text-align: left;
}

#shakad {
    width: 100%;
}

@media (min-width: 1440px) {
    #shakad {
        width: 750px;
    }

    .work-image img {
        width: 700px;
    }
}

.contact-me {
    margin-top: 120px;
}

.form-div {
    width: 600px;
    margin: auto;
    margin-top: 60px;
}

input {
    width: 100%;
    height: 60px;
    box-sizing: border-box;
    background-color: #393D40;
    border: 1px solid #2A2E31;
    border-radius: 5px;
    padding: 20px 30px 20px 30px;
    margin-bottom: 20px;
    font-family: "Work Sans", sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 19px;
    color: rgba(255, 255, 255, 0.8);
}

input::placeholder {
    font-family: "Work Sans", sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 19px;
    color: rgba(255, 255, 255, 0.4);
}

input:focus {
    outline: none;
}

textarea {
    width: 100%;
    box-sizing: border-box;
    background-color: #393D40;
    border: 1px solid #2A2E31;
    border-radius: 5px;
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 20px;
    resize: none;
    font-family: "Work Sans", sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 19px;
    color: rgba(255, 255, 255, 0.8);
}

textarea::placeholder {
    font-family: "Work Sans", sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 19px;
    color: rgba(255, 255, 255, 0.4);
}

textarea:focus {
    outline: none;
}

footer {
    width: 100%;
    bottom: 0;
    background-color: #202426;
    text-align: center;
    padding: 20px 0px;
    margin-top: 100px;
}


.footer-text p {
    font-family: "Work Sans", sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 21px;
    color: rgba(255, 255, 255, 0.75);
    margin: 0px 0px 0px 0px;
    text-align: center;
}

.social-icons {
    width: 10%;
    margin: auto;
    margin-top: 15px;
    display: flex;
    justify-content: space-evenly;
}

.social-icons img {
    width: 20px;
    margin: 10px 10px 0px 10px;
    transition: all .3s ease-in-out 0s;
}

.social-icons img:hover {
    transform: translateY(-5px);
}

.github {
    position: relative;
    display: flex;
    justify-content: center;
    width: 100%;
    margin: auto;
    margin-top: 15px;
}

.github img {
    height: 20px;
    margin: 0px 10px 0px 0px;
}