html, body{
    text-align: center;
    background-color: #343434;
    color: white;
    font-family: "Roboto Condensed", "Helvetica", sans-serif;
    margin:0px 
}
.header{
    position: relative;
    text-align:center;
}
.header-text{
    position:absolute;
    top:50%;
    left:50%;
    transform: translate(-50%, -50%);
    font-size: 72px;
    font-family: "Roboto", "Helvetica", sans-serif;
    font-weight: 500;
    font-style: italic;
    text-shadow: 0 4px black;
}
.sub-text{
    position:absolute;
    bottom:0%;
    left:50%;
    transform: translate(-50%, -12px);
    font-size: 15px;
    font-family: "Roboto Condensed", "Helvetica", sans-serif;
    font-weight: 500;
    font-style: italic;
    text-shadow: 0 2px black;
}
.link-text{
    text-align: right;
    position:absolute;
    top:50%;
    right:16px;
    transform: translate(-25%, -50%);
    font-size: 36px;
    font-family: "Roboto Condensed", "Helvetica", sans-serif;
    font-weight: 500;
    font-style: italic;
    text-shadow: 0 2px black;
}
small{
    font-size:10px
}
div.header{
    padding:0px;
}
.header img {
    width: 100%;
    padding:0px;
    border-bottom: 3px solid white;
}
.portfoliotype{
    transform: translate(-50%, -50%);
    top:50%;
    position: center;
    align-items: center;
}
.container{
    background-color: #343434;
    max-width:1000px;
    height:100%;
    margin:auto; 
    display:grid;
    grid-template-areas: "a b c d";
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 50px repeat(4, auto);
    grid-gap:10px;
    float: absolute;
}
.head{
    background-color:#2a2a2a;
    grid-row:1/2;
    grid-column:1/-1;
    vertical-align: center;
    max-width: 100%
}
#category{
    height:50px;
    font-family: "Roboto Condensed", "Helvetica", sans-serif;
    display:table-cell;
    line-height:50px;
    background-color: #2a2a2a;
    border: none;
    color: white;
    border-color: #2a2a2a;
    text-align: center;
    font-size: 24px;
}
.image{
    padding:5px;
    background-color: #2a2a2a;
}
.image img{
    object-fit:cover;
    max-width: 90%;
    max-height: 250px;
    padding-top:5px;
}
iframe{
    object-fit:cover;
    max-width: 90%;
    max-height: 400px;
    padding-top:5px;
    border:none;
}

.copyright{
    background-color:#2a2a2a;
    margin-top: 20px;
    padding-top:30px; 
    padding-bottom:30px;
}
span{
    color: black;
}

@media(max-width: 1020px){
    div.head{
        max-width:1020px
    }
    .container{
        grid-template-columns: repeat(2, 1fr);
        grid-template-areas: "a b" "c d";
    }
}
@media (max-width: 900px) {
    div.bio{
        font-size: 12px;
    }
    .header-text{
        font-size:36px;
    }
    .sub-text{
        font-size:0px;
    }
    .link-text{
        font-size:18px;
    }
    h1{
        font-size:18px;
    }
    summary{
        font-size: 12px;
    }
    p{
        font-size: 12px;
    }
    footer{
        font-size: 12px;
    }
}