.hero { 
    max-height: 100vw;
    max-width: 100vw;
    background-color: #fa8d6b;
    display: inline-block;
}

body {
    
    padding: 0;
    margin: 0;
    font-family: 'Forum', cursive;

}

.navbar { 
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    padding: 24px 32px;
    box-sizing: border-box;
}

.links{
    position:fixed;
}
.navbar a{ 
    color: white;
    text-decoration: none;
    margin-right: 8px;
    font-size: 2rem;
}
.navbar a:hover{ 
    border-bottom: 2px solid white;
}
.navbar .links ul {
    width:100%;
    text-align: right;
    padding-inline-start: 8px;
}
.navbar .links ul li{
    list-style: none;
    margin: 10px 20px;
}
.sub-menu-wrap {
    position: absolute;
    top:100%;
    width:220px;
    max-height: 0px;
    overflow: hidden;
    transition: max-height 0.5s;
}
.sub-menu-wrap.open-menu {
    max-height: 600px;
}
.sub-menu-link {
    display:flex;
    align-items: center;
    text-decoration: none    ;
    color: black;
    margin: 12px;
}
.sub-menu-link .contact-links p {
    width: 100px;
}

.user-info {
    display:flex;
    align-items:center;

}
.user-info img {
    width: 100px;
    border-radius: 50%;
    margin-right: 15px;
}
.user-info h3{
    font-weight: 500;
    color: black;
}
.sub-menu {
    background: white;
    padding: 10px;
    margin: 10px;
}
.navbar .links ul li a {
    color: black;
    text-decoration: none;
}
.navbar p {
    font-size: 4rem;
    font-weight: bold;
    margin: 0;
    margin-left:35%;
    text-align: center;
    text-shadow: 1px 4px black;
}

.sub-menu-link img {
    width: 100px;
    transition: transform 0.5s;
}

.sub-menu-link:hover img{
    transform: translateX(10px);
}

.navbar .links .contact { 
    size: 2rem;
    text-decoration: none;
    color: dark;
    font-weight: bold;
    padding: 16px 24px;
    align-items: end;
    position:sticky;
    background-color: #fa8d6b;
}
.navbar .contact:hover { 
    border: 2px solid #c8e8fa;
}
.hero-content { 
    padding: 0 15%;
    font-size: 3rem;
    color: white;
}

.hero-content span{ 
    font-style: italic;
    text-shadow: 2px 4px lightblue;
}

.hero .hero-content{
    margin: 24px 32px;
    float: left;
}
.hero .two-column-section { 
    font-size: 2.5rem;
    margin-top: 16px;
    
}
.hero .two-column-section .career{
    float:left;
}
.hero .two-column-section p { 
    width: 49%;
    box-sizing: border-box;
    float: left;
   
}
.links .contact-pic img {
    width:200px;
}
.two-column-section .skills {
    width: 50%;
    float: left;
    box-sizing: border-box;
    padding: 0;
    list-style: none;
}
.two-column-section .skills li{
    width: 50%;
    float: left;
    margin: 8px 0px;
}
.bar {
    height:36px;
    width: 100%;
    background-color: black;
}
.project-photo-gallery{
    background-color: white;
    padding: 12px 0;
}

.pic {
    width: 49.75%;
  display: inline-block;
  box-sizing: border-box;
  padding: 24px;
}
 .subtitle {
    
    font-size: 48px;
    text-decoration: none;
    font-family: 'Work Sans', sans-serif;
    color:#fa8d6b;
    text-align: center;
}
.pic img {
    height: 500px;
    width:100%;
    object-fit: cover;
}
.pic h2 {
    display: inline-block;
    margin: 16px 0 24px 0;
    font-weight: 300;
}

/* .pic:hover {
    opacity: 60%;
    border: 2px 4px #fa8d6b;
} */
.pic img{
    opacity:0.5;
    transition: .8s ease;
    }
    
    .pic img:hover{
    opacity:.9;
    transform: scale(1.08);
    transition: .8s ease;
    }

/* Start of the resume section */
.Resume {
    background-color: #c8e8fa;
    margin-top: -80px;
    padding-bottom: 64px;
}
.resume p, h5, ul, li{
    text-align: center;
}
.resume ul {
   list-style: none;
}
.resume li{ 
    padding-top: 12px;
}

.resume h5{
    font-size: xxx-large;
    color: white;
    margin-bottom: -16px;

}
.resume .subsection {
    padding-top: 32px;
}

.resume .res {
    color: #fa8d6b;
    padding-top: 28px;
    font-size: x-large;
}
.resume .ressy{
    padding: 24px 48px;
    margin-top: 32px;
    margin-left: 43%;
    background-color: #fa8d6b;
    color: white;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}
.resume .ressy:hover {
    background-color: gray;
    opacity: .8;
    transition: .8s ease;
}

.foot {
    height:500px;
    width: 100%;
    background-color: black;
}

td{
    border: 1px solid white;

}
table {
    margin-left: auto;
    margin-right:auto;
    height: 90%;
    width: 70%;
    margin-top: auto;
    margin-bottom: auto;
    padding-top: 16px;
    border-collapse: collapse;
}

table .innertable {
    height: 100%;
    width: 100%;
    border-collapse: collapse;
}
table td {
    font-size: larger;
    color: #fff;
    text-align: center;
}

.survey a:hover {
    border-bottom: 2px solid white;
}