:root {
    --mainColor: #eaeaea;
    --secondaryColor: #fff;
    --borderColor: #c1c1c1;
    --mainText: black;
    --secondaryText: #4b5156;
    --themeDotBorder: #24292e;
    --previewBG: rgb(251, 249, 243, 0.8);
    --previewShadow: #f0ead6;
    --btnColor: black;
}

@counter-style check {
    system: cyclic;
    symbols: "\1F5F8";
    suffix: " ";
}

html,
body {
    box-sizing: border-box;
    padding: 0px;
    margin: 0px;
    scroll-behavior: smooth !important;
}

h1,
h2,
h3,
h4,
h5,
strong {
    color: var(--mainText);
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-weight: 500px;
}


p,
li,
span,
input,
textarea {
    color: var(--secondaryText);
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;

}

a {
    text-decoration: none;
    color: mediumblue;
}

ul {
    list-style: none;
}

h1 {
    font-size: 56px;
}

h1 {
    font-size: 36px;
}

h3 {
    font-size: 28px;
}

h4 {
    font-size: 24px;
}

h5 {
    font-size: 20px;
}

h6 {
    font-size: 16px;
}

.mark {
    font-size: 14px;
    font-weight: bold;
    text-align: center;
}

.s1 {
    background-color: var(--mainColor);
    border-bottom: 1px solid var(--borderColor);
    overflow: auto;
    padding-bottom: 60px;
}

.s2 {
    background-color: var(--secondaryColor);
    border-bottom: 1px solid var(--borderColor);
    overflow: auto;
}

.wid {
    margin: 0;
    margin-top: 5px;
    margin-bottom: 5px;
}

.main-container {
    width: 1200px;
    margin: 0 auto;
}

.greeting-wrapper {
    display: grid;
    justify-content: center;
    align-content: center;
    min-height: 10em;
}

.intro-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
        'nav nav'
        'left right';

    background-color: var(--secondaryColor);
    border: 1px solid var(--borderColor);
    border-radius: 5px 5px 0 0;
    padding-bottom: 38px;
}

.nav-wrapper {
    background-color: var(--mainColor);
    border-radius: 5px 5px 0 0;
    grid-area: nav;
    border-bottom: 1px solid var(--borderColor);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navigation {
    margin: 0px;
    padding: 10px;
    text-align: center;
    background-color: #333;
}

.navigation li {
    display: inline-block;
    margin-right: 5px;
    margin-left: 5px;
}

.dots-wrapper {
    display: flex;
    padding: 10px;

}

.browser-dot {
    background-color: black;
    height: 15px;
    width: 15px;
    border-radius: 50%;
    margin: 5px;
}

#dot1 {
    background-color: purple;
}

#dot2 {
    background-color: indigo;
}

#dot3 {
    background-color: skyblue;
}

#dot4 {
    background-color: green;
}

#dot5 {
    background-color: yellow;
}

#dot6 {
    background-color: orange;
}

#dot7 {
    background-color: red;
}

#theme-options-wrapper {
    visibility: hidden;
}

.left-colummn {
    grid-area: left;
    padding-top: 50px;
    padding-bottom: 50px;
}

.right-column {
    grid-area: right;
    display: grid;
    align-content: center;
}

#preview-shadow {
    background-color: var(--previewShadow);
    width: 300px;
    height: 150px;
    padding-top: 30px;
    padding-left: 30px;

}

#preview {
    width: 300px;
    border: 1.5px solid #17a2b8;
    background-color: lightgoldenrodyellow;
    opacity: 0.8;
    padding: 15px;
    position: relative;
}

.corner {
    width: 7px;
    height: 7px;
    border: 1.5px solid #17a2b8;
    border-radius: 50%;
    background-color: #fff;
    position: absolute;
}

#corner-tl {
    top: -5px;
    left: -5px;
}

#corner-tr {
    top: -5px;
    right: -5px;
}

#corner-bl {
    bottom: -5px;
    left: -5px;
}

#corner-br {
    bottom: -5px;
    right: -5px;
}

.about-wrapper {
    display: grid;
    gap: 25px;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    padding-bottom: 25px;
    padding-top: 5px;
}

#skills {
    display: grid;
    background-color: var(--previewShadow);
}

#secondary-skills {
    font-weight: 700;
    display: grid;
    justify-items: center;
    margin: 0 auto;
    width: 80%;
    padding: 5px;
    grid-template-columns: 1fr 1fr 1fr;
    background-color: lightgoldenrodyellow;
}

.seclist {
    font-size: small;
    margin-top: 5%;
    font-weight: 100;
    list-style: none;
}

#list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    letter-spacing: 0.5px;
    padding: 0px;
    flex-wrap: wrap;
}

.ed-class {
    display: flex;
    flex-direction: column;
    /* align-items: flex-start; */
    gap: 20px;
    /* text-align: center; */
    margin: 0;
    padding: 0;
    padding: 25px;

    background-color: var(--previewShadow);
}

.education-wrapper {
    margin-bottom: 25px;
    border: 1px solid black;
}

.bold {
    font-weight: 900;

}

.complete-ed {
    list-style-type: check;
}

.post-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, 320px);
    gap: 5px;
    justify-content: center;
    padding-top: 15px;
}

.thumbnail {
    display: block;
    object-fit: contain;
    background-color: hsl(217, 54%, 11%);
    width: 100%;
    height: 180px;
}

.post {
    border: 1px solid var(--borderColor);
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.post-preview {
    background-color: #fff;
    padding: 15px;
    text-align: left;
    min-height: 197px;
}

.post-title {
    color: black;
    margin: 0;
}

.post-intro {
    color: #4b5156;
    font-size: 14px;
}

#cl {
    font-size: 14px;
}

/* #cl:hover {
    background-color: antiquewhite
} */

#profile-pic {
    display: block;
    margin-top: 50px;
    margin-bottom: 0px;
    margin-left: auto;
    margin-right: auto;
    height: 200px;
    width: 200px;
    object-fit: cover;
    border: 2px solid var(--borderColor);
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

#contact-form {
    display: block;
    max-width: 600px;
    margin: 0 auto;
    border: 1px solid var(--borderColor);
    padding: 15px;
    background-color: var(--mainColor);
    margin-bottom: 50px;
    border: 1 px solid var(--borderColor);
    border-radius: 5px;
}

#submit-btn {
    margin-top: 10px;
    width: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
    color: #fff;
    background-color: var(--btnColor);
    font-weight: 900;
    border-radius: 5px;
}

.input-field {
    width: 100%;
    margin: 0 auto;
    font-size: 14px;
}

#contact-form label {
    line-height: 2.7em;
}

#contact-form textarea {
    font-size: 14px;
    min-height: 100px;
    resize: none;
}

#open-up {
    display: block;
    margin-top: -200px;
    margin-bottom: 0px;
    margin-left: auto;
    margin-right: auto;
    height: 200px;
    width: 200px;
    object-fit: cover;
}

.theme-dot {
    height: 30px;
    width: 30px;
    border-radius: 50%;
    background-color: black;
    margin: 5px;
    border: 2px solid var(--borderColor);
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    cursor: pointer;
}

.theme-dot:hover {
    border-width: 5px;
}

#light-mode {
    background-color: #fff;
}

#blue-mode {
    background-color: #192734;
}

#green-mode {
    background-color: #78866b;
}

#purple-mode {
    background-color: #7E4C74;
}

#settings-note {
    font-size: 12px;
    font-style: italic;
    text-align: center;
}

#theme-options-wrapper {
    display: flex;
    justify-content: center;
}

#linked-in {
    width: 25px;
    height: 25px;
}

.cert-container {

    display: flex;
    flex-direction: column;
    gap: 5px;

}

.cert-container2 {

    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: center;
    justify-content: center;
}

.cert {
    width: 100%;
}

.cap-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 5px;
    align-items: center;
    margin-top: 10px;
    margin-bottom: 10px;
}

#captcha {
    display: flex;
    justify-content: center;
    padding: 5px;
    min-width: 70px;
}

#reCaptcha {
    text-align: center;
}

#errCaptcha {
    display: flex;
    justify-content: center;
    padding: 5px;
    min-width: 178px;
}

.header-title {
    cursor: none;
    transition: text-shadow 2s, font-size 1s;

}

.header-shadow {
    text-shadow: 0px 8px 7px rgba(81, 67, 21, 0.8);
}

.header-title:hover {
    font-size: 45px;
}

.expand {
    animation: expand 0.8s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;
}

.header-ani {
    animation: myAnim 1s ease 0s 1 normal forwards;
}

.align-class {
    min-width: 120px;
}

footer {
  /*position: absolute;*/
  bottom: 0;
  padding: 1rem;
  text-align: center;
}


@keyframes expand {
    0% {
        letter-spacing: -0.5em;
        transform: translateZ(-700px);
        opacity: 0;
    }

    40% {
        opacity: 0.6;
    }

    100% {
        transform: translateZ(0);
        opacity: 1;
    }
}


@keyframes myAnim {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}


@media screen and (max-width: 1200px) {

    .main-container {
        width: 95%;
        margin: 0 auto;
    }
}

@media all and (max-width: 860px) {

    #list {
        flex-direction: column;
        text-align: center;
    }
}

@media screen and (max-width: 800px) {

    .intro-wrapper {
        grid-template-columns: 1fr;
        grid-template-areas:
            'nav'
            'left'
            'right';
    }

    .right-column {
        justify-content: center;
    }
}

@media all and (max-width: 600px) {

    .cap-container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        align-items: center;
        margin-top: 10px;
    }
}

@media all and (max-width: 450px) {
    .header-title {
        text-align: center;
    }

    #preview-shadow {
        width: 0px;
        height: 0px;
        padding-top: 0px;
        padding-left: 0px;
    }

    #preview {
        display: none;
    }

    #secondary-skills {
        text-align: center;
    }
}

@media all and (max-width:300px) {

    .skills-title {
        margin: 0 auto;
        text-align: center;
    }

    .seclist {
        display: block;

    }

    .left-colummn {
        width: 250px;
    }

    .nav-wrapper {
        flex-direction: column;
    }

    .about-me {
        text-align: center;
        width: 273px;
    }

    .skillset {
        width: 273px;
    }

    #skills {
        width: 273px;
    }

    #secondary-skills {
        width: 273px;
        margin: 0;
        padding: 0;
        padding-bottom: 5px;
    }

    .post {
        width: 260px;
        justify-content: normal;
    }

    .post-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}