*{
	margin:0; padding:0;
	box-sizing: border-box;
	/*text-transform: capitalize;*/
	font-family: Veranda, Geneva, Tahoma, sans-serif, Arial, Helvetica;
}

.container{
	justify-content: center;
	position: relative;
	min-height: 100vh;
	padding-left: 20px;
	padding-right: 20px;
	background: #585858;
}

.topdrop{
	width:317px; 
	height:29px; 
	background-image: url(../css/topdrop.png);
	margin: 0px; 
	padding: 0px; 
	position: fixed; 
	left: 36%; 
	top: 0px; z-index:99;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    background-color: #585858;
}

.topdrop:hover .overlay {
    opacity: .35;
	transition: .3s ease;
}

.topdrop:active .overlay {
	opacity: .45;
	/*transition: .3s ease;*/
}

.container h1{
	text-align: center;
	padding-top: 60px;
	padding-bottom: 10px;
	font-size: 30px;
	font-weight: normal;
	color: white; 
	text-shadow: #353535 -2px -2px;
	letter-spacing: .1ex;
	margin-bottom: 0;
}

.container .video-container{
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	justify-content: center;
	padding: 10px;
}

.container .video-container .video{
	height: 250px;
	width: 350px;
	border: 5px solid #fff;
	border-radius: 5px;
	box-shadow: 0 5px 15px rgba(0,0,0,.7);
	cursor: pointer;
	overflow: hidden;
}

.container .video-container .video img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: .2s linear;
}

.container .video-container .video:hover video,
.container .video-container .video:hover img {
    transform: scale(1.1);
}

.container .popup-video{
	position: fixed;
	top:0; left:0;
	z-index: 100;
	background: rgba(0,0,0,.8);
	height:100%;
	width:100%;
	display:none;
}

.popup-video .frame-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    /* Responsive 16:9 sizing */
    width: min(90vw, 1100px);
    height: calc(min(90vw, 1100px) * 0.5625);

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 5px;
    border: 3px solid #fff;
    overflow: hidden;
	
	background: #000;
}

.popup-video iframe {
    width: 100%;
    height: 100%;
	transition: opacity .25s ease;
}

.container .popup-video span{
	position: absolute;
	top:5px; right:20px;
	font-size: 50px;
	color: #fff;
	font-weight: bolder;
	z-index: 100;
	cursor: pointer;
}

.linebreak{
	width:300px; 
	height: 1px; 
	margin:2px 0px; 
	padding:0px; 
	overflow:hidden; 
	background: #bcbcbc;
}

#nav-container {
	width:317px; 
	height:29px; 
	margin: 0px; 
	padding: 0px; 
	position: fixed; 
	left: 36%; 
	top: 25px; z-index:99;
	text-align: center;	
}

.nav-link{
	margin: 0px; 
	padding: 0px; 
	font-size: 9pt; 
	color: #bcbcbc; 
	text-shadow: #353535 -1px -1px;
	text-transform: uppercase; 
	text-decoration:none; 
	letter-spacing: .5ex;
}

a:hover {
	color: #72A4D2; 
	font-size: 10pt
}

a:active {
	color: #FFA800; 
}

@media (min-width: 1440px) {
  .container {
    padding-left: 100px;
    padding-right: 100px;
  }
}

.coverpage {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;

	justify-content: center;
	font-size: 14px;
	line-height: 24px;
	color: #000;
	max-width: 1000px;
	margin: auto;
}

.coverpage h1 {
	border-bottom: 1px solid #999;
	font-size: 20px;
	font-weight: normal;
	letter-spacing: .6ex;
	color: #bcbcbc;
	text-shadow: #353535 -1px -1px;
	margin-bottom: 0;
	margin-top: 8px; 
    /* shortens line break remove to span the page */	
    width: 260px;
    margin-left: auto;
    margin-right: auto;
}

.coverpage h3 {
	font-size: 16px;
	font-weight: normal;
	font-style: italic;
	color: #72A4D2; 
	text-shadow: #353535 -1px -1px;
	margin-bottom: 0;
	padding-bottom: 20px;
	padding-top: 5px;
	text-align: center;
}

.resume {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;

	justify-content: center;
	font-size: 14px;
	line-height: 24px;
	color: #000;
	max-width: 1000px;
	margin: auto;
}

.resume h1 {
	border-bottom: 1px solid #999;
	font-size: 20px;
	font-weight: normal;
	letter-spacing: .4ex;
	color: #FFA800;
	text-shadow: #353535 -1px -1px;
	margin-bottom: 0;
	margin-top: -45px; 
    /* shortens line break remove to span the page */	
    width: 240px;
    margin-left: auto;
    margin-right: auto;
}


.resume h2 {
	border-right: 2px solid #999;
	font-size: 16px;
	font-weight: normal;
	font-style: italic;
	color: #bcbcbc; 
	text-shadow: #353535 -1px -1px;
	margin-bottom: 0;
	padding-right: 10px;
}

.resume h3 {
	font-size: 16px;
	font-weight: normal;
	font-style: italic;
	color: #72A4D2; 
	text-shadow: #353535 -1px -1px;
	margin-bottom: 0;
	padding-bottom: 20px;
	padding-top: 5px;
	text-align: center;
}

.two-columns {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 20px;
}

/* 
.two-columns ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-left: 0;
}

.two-columns ul li {
    width: calc(50% - 10px);
    margin-bottom: 6px;
}
*/

.left-column {
  flex-basis: 10%;
  width: 100%;
  text-align: right;
}

.right-column {
  flex-basis: 90%;
  width: 100%;
  text-align: left;
}

.resume p {
	margin-top: 0;
	margin-bottom: 5px;
	color: #bcbcbc; 
	/*color: #1A1A1A;*/
	/*color: #333333;*/
}

ul {
	margin: 0;
	padding: 0;
	color: #bcbcbc; 
	list-style-type: circle;
	list-style-position: inside;
}

li {
	margin: 0;
	padding-left: 20px;
}
.two-columns ul {
  margin-bottom: 20px;
}

.video.highlight {
    position: relative; /* <-- needed for the bottom-right tag */
    border: 5px solid #FFA800 !important;
    border-radius: 5px;
    animation: goldPulse 1.8s ease-in-out infinite;
}

/* subtle glowing animation */
@keyframes goldPulse {
    0%   { box-shadow: 0 5px 15px rgba(255, 168, 0, 0.4); }
    50%  { box-shadow: 0 5px 25px rgba(255, 168, 0, 0.9); }
    100% { box-shadow: 0 5px 15px rgba(255, 168, 0, 0.4); }
}

.demo-tag {
    position: absolute;
    bottom: 14px;
    right: 14px;
	background: rgba(255, 168, 0, 0.85);

    );

    color: #444;
    padding: 12px 22px;
    font-size: 26px;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 6px;

    box-shadow:
        0 0 10px rgba(255, 168, 0, 0.55),
        0 3px 8px rgba(0,0,0,0.45);

    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.35);

    pointer-events: none;
    letter-spacing: 0.7px;
}