/* 
    Color 1: #3A4D39
    Color 2: #7D987C
*/

/* General */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
  }

  html, body {
    height: 100%;
    font-size: 62.5%;
  }

.main-nav {
    width: 100%;
    height: 8rem;

    display: flex;
    list-style: none;
    justify-content: space-between;
    padding: 3rem 10rem;
    
    background-color: #801616;

    position: absolute;
    top: 0;
    z-index: 10;
}

.menu-nav-list{
    display: flex;
    list-style: none;
    font-size: 1.6rem;
    gap: 2.5rem;
    font-weight: bold;
}

.menu-nav-par{
    color: #fff;
    font-size: 2rem;
}

.menu-nav-link:link, 
.menu-nav-link:visited {
    color: #fff;
    cursor: pointer;
    text-decoration: none;
}


/* About Me */

.hero-img{
    width: 100%;
    height: 100vh;
    object-fit: cover;

    position: relative;
    z-index: 1;
}

.about-me-text{
    position: absolute;
    top: 20%;
    left: 2%;
    z-index: 2;
    background-color: #AA3939;
    padding: 2rem;
    border-radius: 1rem;
    width: 50rem;
    height: 51rem;
    font-size: 1.4rem;
    color: #fff;
}

.contact-info {
    position: absolute;
    bottom: 0%;
    right: 0%;
    z-index: 2;
    background-color: #AA3939;
    padding: 2rem;
    border-top-left-radius: 1rem;
    font-size: 1.6rem;
    color: #fff;
}

.contact-info h1 a:link,
.contact-info h1 a:visited {
    font-size: 2rem;
    margin-bottom: 1rem;
    text-decoration: none;
    color: #fff;
}


/* Gallery */
.container-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 130rem;
    min-height: 100vh;
    margin: 7rem auto;

}

.container-grid p{
    height: 100%;
    font-size: 1.6rem;
    border-radius: 1rem;
    text-align: left;
    padding: 2rem;
    align-content: center;
}

.grid-item{
    display: flex;
    align-items: center;
    justify-content: center;

    padding: 2rem;
    font-size: 1.6rem;
    text-align: center;
}

.grid-item img{
    width: 60rem;
    height: 50rem;
    object-fit: cover;
    border-radius: 1rem;
}

.container-flex{
    padding-top: 10rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.container-flex img{
    width: 100rem;
    border-radius: 2rem;
    filter: brightness(80%);
}

/*Resume*/
.container-resume{
    display: flex;

    width:95%;
    border-radius: 2rem;
    margin: 10rem auto;
    
    background-color: #AA3939;
}

.resume-wrapper {
    display: flex;
    padding: 2rem;
    gap: 3rem;
    color: white;
    font-family: sans-serif;
    font-size: 2rem;
  }
  
  .avatar img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid white;
  }
  
  .resume-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .resume-content h2 {
    margin: 0;
  }
  
  .resume-content h3 {
    margin-top: 2rem;
    border-bottom: 1px solid white;
    padding-bottom: 0.5rem;
  }
  
  .resume-content ul {
    margin: 0;
    padding-left: 1.5rem;
  }
  
  .resume-content li {
    margin-bottom: 0.5rem;
  }
  
