body {
    background : #18453B;
    color: white;
    
    background-image: url("/static/main/images/msugreen.jpg"); /* path to your image */
    background-size: cover;      /* makes it fill the header */
    background-position: center;/* keeps it centered */
    background-repeat: no-repeat;
    /*position: relative; /* needed for overlay */

    background-attachment: fixed; /* keeps it covering full screen */

    min-height: 100vh; /* ensures full screen height */
    }

.headshot {
    width : 200px;
    height : 250px;

    float: right;

    margin-top: -10px;
    border: 3px solid black;

}

header {
    display: flex;
    justify-content: space-between; 
    align-items: center;            
    padding: 20px;
    background-color: #333333;      
    color: #ffffff;                 

    margin-top: -10px;
    margin-left: -10px;
    margin-right: -10px;

    background-image: url("/static/main/images/grey2.jpg"); /* path to your image */
    background-size: cover;      /* makes it fill the header */
    background-position: center;/* keeps it centered */
    background-repeat: no-repeat;
    position: relative; /* needed for overlay */

    border-bottom: 10px solid black;
}

.header-title {
    font-size: 2rem;
    /* font-weight: 700; */
    margin: 0;

    text-shadow: 
    -2px -2px 0 black,
    2px -2px 0 black,
    -2px  2px 0 black,
    2px  2px 0 black;

    /* font-weight: bold; */
}

nav {
    margin-top: -15px; 
}

/* Nav links */
nav a {
    color: #ffffff;
    margin-left: 15px;  /* space between buttons */
    font-weight: 700;
    font-size: 2rem;

    text-shadow: 
    -2px -2px 0 black,
    2px -2px 0 black,
    -2px  2px 0 black,
    2px  2px 0 black;

}

nav a:hover {
    color: blue;
}

main .row {
    margin-bottom: 20px;
    font-size: 24px;
    padding-right: 3px;
}

.funfact {
    font-size: 24px;
}

footer {
    font-size: 24px;
}

.projects a {
    color: white;
}

.projects a:hover {
    color: blue;
}

.project_img1 {
    width : 350px;
    height : 450px;

    margin-top: 10px;
    border: 3px solid black;
    /* transition: border 0.3s ease; */
}

.project_img:hover {
    border: 3px solid blue;
}

.project_info {
    font-size: 24px;
    margin-top: 10px;
    margin-bottom: -5px;
}

.project_img2 {
    width : 450px;
    height : 400px;

    margin-top: 10px;
    border: 3px solid black;
}