* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

@font-face { 
    font-family: "sansita"; 
    src: url("fonts/PublicSans-Medium.woff"); 
  } 

body {
    background-color: rgb(17, 22, 22);
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, minmax(100vh, auto));
    font-family: 'sansita', serif;
    font-size: 2.3em;
    color: #ffffff;
    line-height: 1.7em;
    word-spacing: 0.05em;
    
}


a {
    color: inherit;
    text-decoration: none;
}

a:hover, a:focus {
    border-bottom: 2px solid
}

span {
    font-weight: 900;
}

ul {
    list-style-type: none;
    font-size: 1.8rem;
}

p {
    padding-bottom: 1.9rem;
    font-size: 2.6rem;
}

header {
    /* background-color: rgb(25, 33, 33); */
    grid-row: 1 / 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    background: rgba(29,63,63,1);
background: -moz-linear-gradient(left, rgba(29,63,63,1) 0%, rgba(39,74,82,1) 36%, rgba(41,76,86,1) 44%, rgba(41,76,86,1) 74%, rgba(30,61,72,1) 100%);
background: -webkit-gradient(left top, right top, color-stop(0%, rgba(29,63,63,1)), color-stop(36%, rgba(39,74,82,1)), color-stop(44%, rgba(41,76,86,1)), color-stop(74%, rgba(41,76,86,1)), color-stop(100%, rgba(30,61,72,1)));
background: -webkit-linear-gradient(left, rgba(29,63,63,1) 0%, rgba(39,74,82,1) 36%, rgba(41,76,86,1) 44%, rgba(41,76,86,1) 74%, rgba(30,61,72,1) 100%);
background: -o-linear-gradient(left, rgba(29,63,63,1) 0%, rgba(39,74,82,1) 36%, rgba(41,76,86,1) 44%, rgba(41,76,86,1) 74%, rgba(30,61,72,1) 100%);
background: -ms-linear-gradient(left, rgba(29,63,63,1) 0%, rgba(39,74,82,1) 36%, rgba(41,76,86,1) 44%, rgba(41,76,86,1) 74%, rgba(30,61,72,1) 100%);
background: linear-gradient(to right, rgba(29,63,63,1) 0%, rgba(39,74,82,1) 36%, rgba(41,76,86,1) 44%, rgba(41,76,86,1) 74%, rgba(30,61,72,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1d3f3f', endColorstr='#1e3d48', GradientType=1 );
}

img {
    height:100%;
    width:100%;
    object-fit: contain; 
}

h1 {
    font-size: 3.8rem;
    text-align: center;
    word-spacing: 1px; 
    letter-spacing:3px;
    padding:1em;
}

html {
    scroll-behavior: smooth;
  } 


/* header and menu */
.menu {
    /* background-color: rgb(110, 63, 2); */
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    justify-self: center;
    align-self: end;
}

.menu_cont {
    padding: 2vw;
    display: grid;
    grid-template-columns: repeat(4, auto);
    justify-content:center;
    grid-template-rows: 1fr;
}

.menu-item {
    place-self: center;
    /* background-color: crimson; */
    padding: 2.4vw;
    font-size: 1.15em;
}

.name {
    /* background-color: rgb(255, 145, 0); */
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    justify-self: center;
    align-self: center;
    text-shadow: 0px 2px 0px rgba(13, 30, 30, 0.5);
    letter-spacing:4px;
    font-size: 1.6em;
    font-weight: 100;
   
}

.mainpic {
    background-color: rgb(58, 58, 58);
    grid-column: 2 / 3;
    grid-row: 1 / 5;
}

img.mainpic  {
        box-shadow: 30px 0px 50px rgba(7, 14, 14, 0.1), -30px 0px 50px rgba(7, 14, 14, 0.1);
    }

.photos img {
    margin: 2em;
    box-shadow: 30px 0px 50px rgba(7, 14, 14, 0.1), -30px 0px 50px rgba(7, 14, 14, 0.1);
}

/* content */

.bio {
    background-color: rgb(196, 210, 200);
    color: black;
    grid-row: 2 / 3;
    justify-self: stretch;
    text-align: justify;
    display: grid;
    grid-template-columns: 2fr 5fr 2fr;
    grid-template-rows: 1fr 3fr 2fr;
   
}

.bio p {
    font-size: 1.7rem;
    line-height: 2.2rem;
    text-justify: newspaper;

}

.showreel {
    background-color: rgb(17, 22, 22);
    color: rgb(255, 255, 255);
    /* grid-column: 2 / 3; */
    grid-row: 3 / 4;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
}

.video-wrapper iframe {
    position:absolute;
    width: 100%;
    height:100%;
    top:0;
    left:0;
}

.photos {
    background-color: rgb(75, 90, 88);
    color:#ffffff;
    grid-row: 4 / 5;
    /* justify-self: stretch; */
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;

}

.photos img {
    width: 40%;
    height: 40%;
    object-fit: contain; 

}


.contact {
    background-color: rgb(175, 196, 181);
    color: black;
    grid-column: 1/ 3;
    grid-row: 5 / 6;
    justify-self: stretch;
    display: grid;
    grid-template-columns: 1fr 5fr 1fr;
    grid-template-rows: 1fr 1fr 1fr;
}


.contact a {
    width: 80%;
    height: 80%;
    justify-self: end;
}

.section_header {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    justify-self:stretch;
    align-self: end;
}

.section_content{
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    align-self:center;
    justify-content: space-evenly;

} 


.pic {
    height: 80vh;
}

/* .logo {
    padding: 0.5vw;
} */

.bio.section_header {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    justify-self:stretch;
    align-self: end;
}

.bio.section_content{
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    justify-self: center;
    align-self: center;
} 


.section_footer {
    grid-column: 2 / 3;
    grid-row: 3 / 4;
    justify-self: center;
    align-self: start;
}

.contact .section_content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

dialog {
    margin-left: auto;
    margin-right:auto;
    margin-top: auto;
    margin-bottom: auto;
    z-index: 10;
    font-size: 3rem;
    background-color: rgb(175, 196, 181);
    padding: 6vw;
    border:1rem;
    border-radius: 1rem;
  }

