html {
    background-color: lightgrey;
    font-size: 18px;
}

body {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

h2 {
    font-family: 'Unbounded', cursive;
    font-weight: bold;
    color: black
}

a {
    font-family: 'Sofia Sans', sans-serif;
    color: black;
    font-size: 22px;
    margin: 5px;
    text-decoration: none;
    font-weight: 600;
    
}

#logo {
    font-family: 'Unbounded', cursive;
    font-weight: bold;
    color: black;
    font-size: 26px;
    margin: 0;
    padding-left: 0;
}

#link {
    font-family: 'Unbounded', cursive;
    font-weight: bold;
    color: black;
    font-size: 28px;
    margin: 0;
}

p, footer {
    font-family: 'Sofia Sans', sans-serif;
    color: black;
    line-height: 25px;
}


h3 {
    font-family: 'Unbounded', cursive;
}

nav {
    display: flex;
    align-items: center;
    border-bottom: 1px black solid;
}

.navigation-items {
    display: flex;
    list-style-type: none;
    padding: 0;
    align-items: center;
    margin: 0;
    margin-left: auto;
}


.contact-items {
    display: inline-flex;
    margin: 0 auto;
    flex-direction: row;
    list-style-type: none;
}


li {
    margin: 8px;
}

ul {
    padding: 0;
    list-style-type: none;
}

.about-me-container {
    display: flex;
}

.skill {
    font-family: 'Sofia Sans', sans-serif;
    /* font-weight: bold; */
    display: flex;
    justify-content: start;
    align-content: space-between;
    flex-wrap: wrap;    
    line-height: 25px;

}

footer {
    margin-top: 8px;
    padding-top: 8px;
    text-align: center;
    font-family: 'Unbounded', cursive;
    border-top: 1px black solid;
}


details {
    cursor: pointer;
    margin-bottom: 15px;
}

summary {
	list-style-image: url(https://s3-us-west-2.amazonaws.com/s.cdpn.io/3/right-arrow.svg);
    line-height: 25px;
}

h3 {
    font-family: 'Sofia Sans', sans-serif;
    font-weight: bold;
    color: black;
    display: inline;
}

.project > a {
    font-weight: 600;
    font-size: 18px;
}

img.interactive {
    width: 400px;
    transition: width 0.3s ease;
    cursor: pointer; 
    display: inline-block;
    object-fit: cover;
}

img.interactive.enlarged {
    width: 100%;
    max-width: 900px;
}

#pd {
    height: 200px;
}

.skill-name {
    font-weight: bold;
    font-size: 18px;
    padding-right: 5px;
}

.navigation-item {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    z-index: 1;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}


.navigation-item.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a:hover {
    background-color: #ddd;
}

.githublogo {
    width: 20px;
    height: 20px;
}
.image-me {
    margin-top: 60px;
    width: 300px;
    height: 100%;
    border-radius: 360px;
    padding-left: 25px;
    /* Create transform animation */
    transition: transform 2s;
    transform-origin: center;
}
  
.image-me:hover {
    /* Trigger the transform */
    transform: rotate(180deg);
}

@media only screen and (max-width: 768px) {
    .about-me-container {
        flex-direction: column;
    }

    h2, h3 {
        font-size: 16px;
    }

    body {
        padding: 0 20px;
    }

    p, footer {
        font-size: 14px;
        line-height: 22px;
    }
    
    a {
        font-size: 10px;
        font-weight: bold;
    }  

    img.interactive {
        width: 300px;
    }

    img.interactive.enlarged {
        width: 100%;
    }

    #pd {
        height: 100px;
        max-width: 100%;
    }

    .image-me {
        margin-top: 10px;
        width: 300px;
        height: 75%;
        border-radius: 360px;
        padding-left: 25px;
    }
    section {
        padding-bottom: 5px;
    }
} 
