#wrapper{
    display: grid;

    grid-template-areas: 
    "navigation"
    "about"
    "reel"
    "skills"
    "gallery";
}

body{
    margin: 0px;
    background-color: #513b22;
    color: #513b22;
    font-family: "Mulish", Arial, sans-serif;
}

header{
    grid-area: navigation;
    background-color: #c0b3ad;
    display: grid;
    grid-template-areas: 
    "filmLink resumeLink emailLink";
    justify-items: center;
    font-size: 200%;
    margin-bottom: 20px;
}

#about{
    background-color: #b39f70;
    margin-bottom: 20px;
}

.aboutLeft{
    flex: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 0.1;
    margin-top: 50px;
    font-size: 150%;
}

.aboutRight{
    flex: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.aboutText{
    inline-size: 75%;
    overflow-wrap: break-word;
}

#reel{
    align-items: center;
    justify-content: center;
    display: block;
    margin: auto;
}

#reel iframe{
    width: 420px;
    height: 320px;
    align-items: center;
    justify-content: center;
}

#skills{
    background-color: #c19b8f;
    margin: 20px;
}

#skills h3{
    text-align: center;
}

#skills ul{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    flex-basis: auto;
}

#skills hr{
    margin-left: 50px;
    margin-right: 50px;
    border: none;
    height: 2px;
    color: #513b22;
    background-color: #513b22;
}

#gallery{
    background-image: url(/media/background.png);
    background-size: cover;
    margin-left: 0;
    margin-right: 0;
    display: flex;
    flex-direction: column;
}

#photos{
    background-color: #e0ccb9;
    margin-left: 40px;
    margin-right: 40px;
    margin-bottom: 30px;
}

#galleryRow{
    margin-left: 20px;
    margin-right: 20px;
    margin-bottom: 50px;
}

.gallaryImage img{
    max-width: 600px;
    min-width: 300px;
    width: 100%;
    margin-top: 20px;
}

.gallarySummary{
    font-size: 110%;
}

header a:link {
    color: #513b22;
    text-decoration: none;
  }
  
header a:visited {
    color: #513b22;
    text-decoration: none;
  }
  
header a:hover {
    color: #513b22;
    text-decoration: underline;
  }
  
header a:active {
    color: #302314;
    text-decoration: underlinse;
}

#gallery a:link {
    color: #b39f70;
    text-decoration: none;
    font-weight: bold;
  }
  
#gallery a:visited {
    color: #b39f70;
    text-decoration: none;
    font-weight: bold;
  }
  
#gallery a:hover {
    color: #887955;
    text-decoration: underline;
    font-weight: bold;
  }
  
#gallery a:active {
    color: #5f543a;
    text-decoration: underlinse;
    font-weight: bold;
}

footer{
    text-align: center;
    margin-bottom: 30px;
}

@media screen and (min-width: 830px){
    #about{
        background-color: #b39f70;
        margin-bottom: 20px;
        display: flex;
        align-items: center;
    }

    .aboutRight{
        align-items: normal;
        flex-direction: column;
        margin-top: 50px;
        margin-bottom: 50px;
        text-align: left;
    }

    .aboutRight h2{
        font-size: 150%;
    }
    
    .aboutRight p{
        font-size: 120%;
    }

    #reel iframe{
        width: 720px;
        height: 405px;
    }

    #skills{
        font-size: 110%;
    }
    
    #skills ul{
        justify-content: space-around;
    }

    .gallaryAllImage{
        display: flex;
        flex-direction: row;
    }

    #galleryRow{
        margin-left: 20px;
        margin-right: 20px;
    
        display: grid;
        grid-template-areas: 
        "gallaryAllImage"
        "gallarySummary";
        justify-content: left;
    }

    .gallaryImage{
        margin-left: 20px;
        margin-right: 20px;
    }

    #photos{
        margin-left: 60px;
        margin-right: 60px;
    }
}

@media screen and (min-width: 1920px){

    .aboutRight h2{
        font-size: 200%;
    }
    
    .aboutRight p{
        font-size: 150%;
    }

    .aboutLeft{
        font-size: 200%;
        margin-bottom: 50px;
    }

    #reel iframe{
        width: 1080px;
        height: 608px;
    }

    #skills{
        font-size: 150%;
    }

    #gallery{
        background-size: contain;
    }

    #galleryRow{
        flex-direction: row;
    }

    #galleryRow{
        margin-left: 20px;
        margin-right: 20px;
    
        display: grid;
        grid-template-areas: 
        "gallaryAllImage gallarySummary";
        align-items: center;
        justify-content: left;
        
    }

    #gallery{
        display: unset;
    }

    .gallaryImage img{
        max-width: 600px;
        min-width: 300px;
        width: 100%;
        margin-top: 20px;
        margin-right: 100px;
    }
}


