:root {
    --white: #fff;
    --red: #da2e1e;
    --black: #000000;
    --border-radius: 50px;
    --header-font: arial black, sans-serif;
    --anchor-font: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  }


body {
    font-size: 16px;
    font-family: var(--anchor-font);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    
  }

h1 {
    font-size: 4rem;
    margin-bottom: 10px;
    font-family: var(--header-font);
    text-align: center;
    background-color: var(--red);
    background-size: 20px 30px;
    border-radius: 30px;
}

h2 {
    position: relative;
    font-size: 3rem;
    margin-right: 50px;
    font-family: var(--header-font);
    
    
}

h3 {
    font-family: var(--header-font);
}

header {
    padding: 20px;
    text-align: left;
    background: var(--black);
    color: var(--white);
    border-style: solid;
    border-width: 3px;
    border-color: var(--red);
    
  }
nav {
    display: flex;
    background-color: var(--black)
}

nav a {
    display:inline-block;
   
    padding: 15px 20px;
    text-decoration: none;
    color: var(--white);
    
    margin-left: 250px;
    
}
nav a:hover {
    color: var(--red);
}
main {
    display: flex;
    flex-wrap: wrap;
    flex-direction: vertical;
    text-align: left;
  }
  
.About-Me {
   
}

.headshot-image {
    display:block;
    margin-left:auto;
    margin-right:auto;
    width: 50%;
}

.headshot-image img{
    height: 200px;
    float: left;
    border: solid 2px var(--white);
    margin-top: 10px;
    margin-right: 20px;
}

.Work  {
   

    
}
 
.big-photo {
    
}

footer {
    margin-top: 20px;
    background-color: var(--black);
    color: white;
    padding: 25px;
}
.Contact-Me a {
    text-decoration: none;
    color: var(--white);
    padding: 50px;
    text-align: center;
    margin-left: 30px;
    
}

.Contact-Me a:hover {
    color: var(--red);
}

.Image {
    max-width: 500px;
    border-color: var(--black);
    border-style: solid;
    border-width: 2px;
    justify-content: space-evenly;
    display:flex;
    flex-wrap: wrap;
    
}

.Surf-Image {
    width: 1000px;
    border-color: var(--black);
    border-style: solid;
    border-width: 2px;
    justify-content: space-evenly;
    display:flex;
    flex-wrap: wrap;
}
  
.content-1 {
    display: flex;
    flex-direction: column;
    flex-wrap:wrap;
    padding-left: 30px;
    margin-left: 300px;
    border-left: solid 5px var(--red);
    
}

.content-1 h3 {
    display: inline-block;
    width: 25%;
    vertical-align: middle;
    text-align: right;
    justify-content: center;
    align-items: center;
}

.content-1 p {
    display: inline-block;
    width: 60%;
    margin-left: 20px;
    vertical-align: top;
    border-left: solid 3px var(--red);
    padding: 10px;
}

.Image-Sections {
    position: relative;
    margin: 20px;
}

.Section-text {
    position:absolute;
    background-color: var(--white);
    background-size: 20%;
    border: solid 3px var(--black);
    padding: 5px;
    padding-left: 10px;
    margin: -10px -20px;
}

.Section-text:hover {
    background-color: var(--red);
    color: var(--white);
}
.quick-bio {
    text-align: center;
    padding-top: 10px;
}

.section-columns {
    display:flex;
    flex-wrap: wrap;
}



@media screen and (max-width: 768px) {
    
    .content-1 {
      display: flex;
        flex-direction: row;
        margin: 0px;
    }
   h2 {
    display: flex;
    justify-content: center;
    text-align: center;
   }
  }