/*customary properties/variables*/

 :root {
    --seahawk-blue: #0a2241;
    --seahawk-green: #98df4a;
}


/*-- to reset at start-- */

* {
    margin: 0px;
    padding: 0px;
}


/*--media quiery part --*/


/* 1200px / 16px = 75em */

@media (max-width: 75em) {
    html {
        font-size: 60%;
    }
}


/* back to the beginning */

html {
    font-family: 'Merriweather Sans', sans-serif;
    box-sizing: border-box;
}

header {
    display: flex;
}

#navbar {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: fixed;
    background-color: var(--seahawk-green);
    width: 100%;
    height: 8vh;
    box-shadow: 0 2px 0 rgba(0, 0, 0, 1);
}

#navlist {
    display: flex;
    justify-content: space-around;
    background-color: green;
    width: 380px;
    padding: .4rem;
    font-size: 18px;
}

#navlist a {
    display: block;
    font-size: 2rem;
    padding: .5rem;
}

#navlist a:hover {
    background-color: #07d16c;
    padding: .5rem;
}

li {
    list-style: none;
    color: #fff;
    font-size: 2rem;
}

a {
    text-decoration: none;
    color: #f0f0f0;
}

#welcome-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    width: 100%;
    height: 90vh;
    background-color: rgb(65, 65, 83);
}

#welcome-section>p {
    font-size: 1.5rem;
    font-weight: 200;
    font-style: italic;
    color: var(--seahawk-green);
    animation-duration: 3s;
    animation-name: slidein;
}

figure.myPhoto {
    /*margin: 0 0 .25em 2%;*/
    padding: .5em;
}

figure.myPhoto img {
    width: 300px;
    border: 8px solid #01701d;
    border-radius: 50%;
}

h1 {
    font-size: 3.5rem;
    text-align: center;
    margin-top: 55px;
    animation-duration: 3s;
    animation-name: slidein;
}

@keyframes slidein {
    from {
        margin-left: 100%;
        width: 300%;
    }
    75% {
        font-size: 300%;
        margin-left: 25%;
        width: 150%;
    }
    to {
        margin-left: 0%;
        width: 100%;
    }
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
    padding-top: 4rem;
}

h3 {
    font-size: 2rem;
    color: white;
    text-align: center;
    margin-top: 20px;
}

.bio-details {
    background-color: black;
    height: 70vh;
}

#name {
    display: flex;
    justify-content: center;
    padding: 12px;
    color: #9bffff;
    font-size: 2.75rem;
}

.bio-details h3 {
    color: #24f6c2;
    font-size: 2rem;
    margin-right: 900px;
    margin-bottom: 20px;
}

span {
    font-size: 32px;
    color: #654888;
}

#div-list {
    font-size: 16px;
    color: #00bb10;
    font-size: 16px;
    margin-bottom: 40px;
    padding: 10px 0px 10px 20px;
    height: 50vh;
}

#div-list li {
    list-style-type: disc;
    color: #00bb10;
    font-size: 18px;
    margin: 0px 30px 10px 245px;
    height: 12px;
}

#projects {
    display: grid;
    flex-direction: row;
    justify-content: space-around;
    flex-flow: wrap;
    box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    background-color: gray;
}

.projects-section {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    flex-flow: wrap;
    background-color: gray;
}

.Projects-grid {
    display: flex;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    grid-gap: 1rem;
    width: 100%;
    /*max-width: 1280px;*/
    margin: 1.5rem;
    margin-bottom: 6rem;
}

.project-image {
    display: grid;
    flex-direction: row;
    grid-gap: 1rem;
    height: 300px;
    width: 230px;
    margin-top: 30px;
    padding: 0 auto;
}

.project-tiles {
    margin: 1.2rem;
}

.project-title {
    color: #fff;
    border: 1px solid white;
    font-size: 1rem;
    text-align: center;
    background: rgba(0, 0, 0, 0.596);
    position: relative;
    width: 200px;
    bottom: 50px;
    padding: 15px;
}

#contact {
    display: flex;
    justify-content: center;
    background-color: var(--seahawk-blue);
    padding-top: 10px;
}

footer {
    font-weight: 100px;
    display: flex;
    padding: 2rem;
    background-color: var(--seahawk-blue);
}

footer .contact-links {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    margin: 2rem;
}

footer p {
    margin: 2rem;
    color: white;
    align-items: left;
}