/* portfolio_styles.css */


/* general elements */
header {
    margin: 20px;
    justify-content: space-between;
    display: flex;
    
    border: 3px solid;
    border-radius: 10px;
    border-color: black;
    background-color: whitesmoke;
    
    position: sticky;
    top: 0;
    z-index: 0;
}

body {
    font-family: Calibri, 'Gill Sans', 'Gill Sans MT', 'Trebuchet MS', sans-serif;
    background-color: lightgrey;
    color: black;
    
    margin: 0;
    padding: 0;
}

main {
    background-color: lightgrey;
    color: black;
    padding: 20px; 
}

footer {
    background-color: lightgrey;
    color: black;
    
    margin: 10px;
    text-align: center;
}

/* logo image */
.logo img {
    margin: 10px;
    width: 80px;
    height: auto;
    
    border: 3px solid;
    border-radius: 10px;
    border-color: black;
}

/* navigation bar */
.navbar {
    list-style-type: none;
    padding: 3px;
    font-size: 25px;
}

.navbar li {
    padding: 10px;
    float: left;
    
    background-color: lightgrey;
    border-radius: 10px;
    border-color: black;
    border: 3px solid;
    
    margin-right: 25px;
}
.navbar a {
    color: black;
}

/* WIP message */
.wip {
    font-size: 20px;
    color: black;
    font-weight: bold;
    margin-left: 100px;
}

.professional-photo img {
    height: 400px;
    width: auto;
    
    border: 3px solid;
    border-radius: 10px;
    border-color: black;
    
    margin-left: 20px;
}

/* specifics for index.html */
.index-main {
    display: flex;
    align-items: center;
}

/* specifics for contact.html */
.contact-main {
    display: flex;
    justify-content: space-between;

    margin-left: 20px;
    margin-right: 20px;
}

.contact-me {
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    font-size: 70px;
    font-weight: bolder;
    color: black;
    
    -webkit-text-stroke: 1px whitesmoke; /* width and color */
    letter-spacing: 4px;
    line-height: 0.5;
}

.reach-out {
    font-size: 20px;
    color: black;
    margin-top: 10px;
}

.my-info {
    font-family: Calibri;
    font-size: 35px;
    font-weight: bolder;
    color: black;
    margin-top: 70px;
    
    -webkit-text-stroke: 1px whitesmoke; /* width and color */
}

.contact-info {
    margin-bottom: 0;
    margin-left: 10px;
}

h3 + p {
    margin-top: 5px;
    margin-left: 10px;
}

.info-link {
    margin-bottom: 35px;
}