@charset "UTF-8";
html {
    box-sizing: border-box;	
    }
*, *:before, *:after {
    box-sizing: inherit;
}

p  {
    font-size: 1em;
    line-height: 1.4em;}

.sub {
    font-size: 0.7em;
    line-height: 1.5em;
}

.logo {
    padding-top: 30px;
    width: 100%;
}

	
body {
    margin: 0px auto;
    width: 800px;
    font-family: sans-serif;
    margin-top: 40px;
}

img {
    width: 100%;
    margin: auto;
}

.container {
    padding-top: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap:0px;

}
 
strong {
   color: #25b1d4;
} 
.item {
    padding: 10px;
    font-size: 20px;
}

.item1 {
    grid-area: 1 / span 2;
    align-items: center;
    justify-content: center;
}
.item2 {
    grid-area: 1 / span 1;
    padding-top: 25px;
}



.stuff h3 {
    border-top: 1px solid lightgrey;
    padding-top: 40px;
}
h4 {
    border-top: 1px solid lightgrey;
    padding-top: 20px;
}

footer {
    text-align: center;
    color:lightgrey;
    font-size: 0.6em;
    padding-bottom: 50px;

}



a:link {
  color: #25b1d4;
	text-decoration: none;

}

/* visited link */
a:visited {
  color: #25b1d4;
    
}

/* mouse over link */
a:hover {
  color: #2685df;
}

/* selected link */
a:active {
  color: #2685df;
}


/* Creative Portfolio Stuff */

.CP {
    padding-top: 20px;
    
}
.top {
	background-color: #25b1d4;
	font-size: 10px;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 35px;
}

.bottom {
	color: grey;
	padding: 15px;
    height: 25px;
    background-color: #25b1d4;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
}
.TopSmall {
    text-align: right;
    width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.year {
	align-self: center;
    text-align: center;
	padding: 5px 10px; 
	font-size: 12px;

}

/* --- dual stuff --- */

.CP-two img{
    width: 65%;
    float: left;
}
 
.CP-two iframe {
    width: 35%;
    height: 355px;
    padding: 0px;
}

.CP-half img{
    width: 379px;
    float: left;
}
 
.CP-half iframe {
    width: 367px;
    height: 600px;
    padding: 0px;
}

.CP-GB img{
    width: 375px;
    float: left;
}
 
.CP-GB iframe {
    width: 367px;
    height: 483px;
    padding: 0px;
}

.CP-CI img{
    width: 400px;
    float: left;
}

.CP-CI iframe {
    width: 350px;
    height: 425px;
    padding: 0px;
}

.CP-ZL img{
    width: 250px;
    float: left;
}

.CP-ZL iframe {
    width: 490px;
    height: 350px;
    padding: 0px;
}
/* --- dual stuff --- */


.TopSmall a:link {
    color: white;
    border-right: 1px solid white;
}


.TopSmall a:visited {
    color: white;
}

.TopSmall a:active {
    color: skyblue;
}

.TopSmall a:hover {
    color: skyblue;
}

iframe {
    display:block;
    width: 750px;
    height: 475px;
    margin: 0 auto;
    margin-bottom: 20px;
}



@media only screen and (max-width : 800px) {
    
    .container {
        grid-template-columns: 1fr 1fr ;
        padding-top: 0px;
    }
    body {
        width: 100%;
        margin-top: 0px;
    }
    
    .item {
        padding: 0px;
    }
    .item1 {
        padding: 0px;
        margin: 0px;
    }
    .item2 {
        grid-area: 2 / span 2;
        padding: 15px; 
    }
    .logo {
        padding-top: 0px;
    }
    .stuff {
        padding: 0px 15px;
    }
    
    p {
        font-size: 1.5em;
    }
    
    .sub {
        font-size: 1.1em;
    }
    
    h2 {
        font-size: 40px;
    }
    h3 {
        font-size: 30px;
    }
    
}