body{
    display: grid;
    grid-template-columns: 5VW 5VW auto 5VW 5VW;
    /*grid-template-rows: 10VH 20VH 20VH 30VH 10VH 10VH 10VH auto 10VH auto;*/
    grid-template-rows: auto auto max-content max-content max-content auto max-content auto max-content auto;
}


/*Slide show*/
.slideshow{
    object-fit: cover;
    width: 100%;
    grid-column-start: 2;
    grid-column-end: 5;
    grid-row-start: 2;
    grid-row-end: 7;
    overflow: hidden;
    height: 100%;
    
}
.imgss{
    width: 100%;
    
    object-fit: cover;
    
}

/*Text Overlay's*/
.name{
    grid-column-start: 3;
    grid-row-start: 2;
    font-size: 5VW;
}
.about{
    grid-column-start: 3;
    grid-row-start: 3;
    font-size: 2VW;
}
.imgi{
    background-color: black;
    opacity: 70%;
    grid-column-start: 2;
    grid-row-start: 6;
    font-size: 1VW;
}
.aimg{
    background-color: black;
    opacity: 70%;
    grid-column-start: 3;
    grid-row-start: 6;
    font-size: 1.5VW;
    display: grid;
    grid-template-columns: auto;
    grid-template-rows: 50% 50%;
}
.imgK{
    background-color: black;
    opacity: 70%;
    grid-column-start: 4;
    grid-row-start: 6;
    font-size: 1VW;
}
.aboutme{

    text-decoration: underline;
    font-size: 3VW;
    text-align: center;
    grid-column-start: 3;
    grid-row-start: 7;
    z-index: 100;
    color: white;
}
.abouttext{
    font-size: 1.5VW;
    text-align: center;
    grid-column-start: 3;
    grid-row-start: 8;
    z-index: 100;
    color: white;
    padding-bottom: 3VH;
}
.High{

    text-decoration: underline;
    font-size: 3VW;
    text-align: center;
    grid-column-start: 3;
    grid-row-start: 9;
    z-index: 100;
    color: white;
}
.bottomstuf{
    padding: 2Vh;
    grid-column-start: 3;
    grid-row-start: -1;
}
.photogrid{
    grid-column-start: 3;
    grid-row-start: 10;
    display: grid;
    /*grid-template-columns: 19VW 19VW 19VW 19VW;*/
    grid-template-columns: 24% 24% 24% 24%;
    grid-template-rows: 13.5VW max-content 13.5VW max-content 13.5VW max-content;
    /*grid-template-rows: 30VH auto 30VH auto 30VH auto;*/
    grid-column-gap: 1.25%;
}
.photogrid div{
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}
.photogrid div img{
    width: 100%;
    /*height: 100%;*/
    position: absolute;
    left: 0;
    top: 0;
}
.card {
    height: 100%;
    width: 100%;
    position: relative;
}
.card1 div{
    grid-column: 1;
    grid-row: 1;
}
.text{
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    text-align: center;
    color: white;
    width: 100%;
    height: 100%;
    
    
}
.black50{
    background-color: black;
    opacity: 0.6;
}
.textL{
    position: relative;
    top: -100%;
    font-size: 1.5VW;
}

.text:hover{
    opacity: 1;
}

.Header{
    grid-column-end: 6;
}

