/* Header */
.header{
    background-color: #000;
    box-shadow: 1px 1px 5px 0px var(--gray);
    position: fixed;
    top: 0;
    width: 100%;
	border-bottom:#0a95ff solid 5px;
	z-index:1;
}
/* Logo */
.logo{
    display: inline-block;
    color: var(--white);
    font-size: 60px;
    margin-left: 10px;
	  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-style: normal;
}
/* Nav menu */
.nav{
    width: 100%;
    height: 100%;
    position: fixed;
    background-color: var(--black);
    overflow: hidden;

}
.menu a{
    display: block;
    padding: 30px;
    color: var(--white);
}
.menu a:hover{
    background-color: var(--gray);
}
.nav{
    max-height: 0;
    transition: max-height .5s ease-out;
}
/* Menu Icon */
.hamb{
    cursor: pointer;
    float: right;
    padding: 40px 20px;
}/* Style label tag */

.hamb-line {
    background: var(--white);
    display: block;
    height: 2px;
    position: relative;
    width: 24px;

} /* Style span tag */

.hamb-line::before,
.hamb-line::after{
    background: var(--white);
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    transition: all .2s ease-out;
    width: 100%;
}
.hamb-line::before{
    top: 5px;
}
.hamb-line::after{
    top: -5px;
}

.side-menu {
    display: none;
} /* Hide checkbox */
/* Toggle menu icon */
.side-menu:checked ~ nav{
    max-height: 100%;
}
.side-menu:checked ~ .hamb .hamb-line {
    background: transparent;
}
.side-menu:checked ~ .hamb .hamb-line::before {
    transform: rotate(-45deg);
    top:0;
}
.side-menu:checked ~ .hamb .hamb-line::after {
    transform: rotate(45deg);
    top:0;
}

body:has(.side-menu:checked) {
  overflow: hidden;
}
/* Responsiveness */
@media (min-width: 768px) {
    .nav{
        max-height: none;
        top: 0;
        position: relative;
        float: right;
        width: fit-content;
        background-color: transparent;
    }
    .menu li{
        float: left;
    }
    .menu a:hover{
        background-color: transparent;
        color: var(--gray);

    }

    .hamb{
        display: none;
    }
}
/* Universal Body Edits */
body{
	background:#5A9BCC;
	background-size: 50px 50px;
	background-image:
    linear-gradient(to right, #FFF 1px, transparent 1px),
    linear-gradient(to bottom, #FFF 1px, transparent 1px);
	font-family:sans-serif;
}
p{
	line-height:1.6;
	text-indent:50px;
	width:100%;
	font-size: clamp(10px, 5vw, 30px);
}



/* Menu */
/* Theming */
:root{
    --white: #f9f9f9;
    --black: #36383F;
    --gray: #85888C;
} /* variables*/

/* Reset */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
a{
    text-decoration: none;
    color:#054fb9;
}

a:link{
	color:#FFF;
	background:#212a9a;
	}

a:visited{
	color:#007cdb;
}

ul{
    list-style: none;
}
	
/* Main Page Container */
div.container{
	background:#003e6e;
	margin:auto;
	height:100%;
	padding:40px 0;
	padding-top:100px;
	display:flex;
	flex-direction:column;
	border-radius:25px;
	border:#0a95ff solid 5px;
}
/* h1 */

h1 {
	color:#FFF;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-style: normal;
	padding-left:40px;
}
h1 {
	background:#004ee0;
	width:150px;
	border-right:#011728 5px solid;
	border-bottom:#011728 5px solid;
	right:30px;
	position:relative;
}

h2, h3{
      color:#FFF;
      }
/* Introduction */
div#introduction{
	position:relative;
	top:50px;
}
/* About Me */
div#container-inner{
	margin:0 auto;
	padding:0 20px;
}
div#container-inner p{
	border-right:#011728 5px solid;
	border-left:#011728 5px solid;
	background:#a1d2eb;
	color:#000;
	margin:auto;
	padding:10px;
	font-size: clamp(10px, 5vw, 30px);
	text-align:left;
}

/* Thumbnails */
img.thumbnails{
	width:50%;
	height:50%;
	border:5px solid #011728;
}

/* Articles */
p.articles{
	text-align:left;
}
div.item {
    vertical-align: top;
    display: inline-block;
    text-align: center;
    width: 240px;
    margin:0 auto;
}

span.caption{
	display:block;
	padding:10px 0;
}

div.center{
	margin:0 auto;
	text-align:center;
	width:400px;
	display:inline;
}

div.center p{
	text-align:left;
	}
div.centerBox{
	text-align:center;
	}

/* Footer */
footer{
	color:#b3d8f4;
	margin:0 auto;
	padding:5px 0;
	top:20px;
	position:relative;
	text-align:center;
}