body {
	margin: 0;
	display: flex;
	flex: 1;
	height: 100%;
	width: 100%;
}

/** Text styling **/

@font-face {
    font-family: 'Stickler Pro';
    src: url('assets/fonts/Stickler-Pro.eot');
    src: local('assets/fonts/Stickler Pro'), local('assets/fonts/Stickler-Pro'),
        url('assets/fonts/Stickler-Pro.eot?#iefix') format('embedded-opentype'),
        url('assets/fonts/Stickler-Pro.woff2') format('woff2'),
        url('assets/fonts/Stickler-Pro.woff') format('woff'),
        url('assets/fonts/Stickler-Pro.ttf') format('truetype'),
        url('assets/fonts/Stickler-Pro.svg#Stickler-Pro') format('svg');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Orion Sans';
    src: url('assets/fonts/OrionSans-Regular.eot');
    src: local('assets/fonts/Orion Sans Regular'), local('assets/fonts/OrionSans-Regular'),
        url('assets/fonts/OrionSans-Regular.eot?#iefix') format('embedded-opentype'),
        url('assets/fonts/OrionSans-Regular.woff2') format('woff2'),
        url('assets/fonts/OrionSans-Regular.woff') format('woff'),
        url('assets/fonts/OrionSans-Regular.ttf') format('truetype'),
        url('assets/fonts/OrionSans-Regular.svg#OrionSans-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
}

h1 {
	color: white;
	font-size: 80px;
	margin: 0;
	font-family: 'Stickler Pro';
}

h2 {
	color: black;
	margin: 0;
	font-size: 50px;
	font-family: 'Stickler Pro';
	margin-bottom: 15px;
}

p {
	font-family: "Orion Sans";
	font-size: 20px;
}

.experience-text {
		font-family: "Orion Sans";
		font-size: 18px;
		margin: 5px;
}

.checkbox-text {
	font-family: "Orion Sans";
	cursor: pointer;
	margin-left: 5px;
	margin-right: 15px;
}

.italic {
	font-style: italic;
}

.year-identifier {
	color: gray;
	font-family: "Orion Sans";
	font-size: 20px;
}

.experience-title {
	font-family: 'Stickler Pro';
	font-size: 30px;
	text-decoration: none;
}

.title-headline {
	font-family: 'Stickler Pro';
	font-size: 25px;
	text-decoration: none;
}

.article-title {
	font-family: "Orion Sans";
	font-size: 20px;
	text-decoration: none;
}

.note-text {
	font-family: "Orion Sans";
	font-size: 15px;
	color: gray;
}

.list-item {
	margin-bottom: 8px;
}

.container {
	height: 100%;
	width: 100%;
	display: flex;
	flex: 1;
	flex-direction: column;
	align-items: center;
	overflow-x: hidden;
}

.top-container {
	height: max-content;
	width: 100%;
	background-color: black;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}

.coverphoto {
	height: 280px;
	width: 100%;
	background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("assets/coverphoto-min.jpeg");
	background-repeat: no-repeat;
  background-attachment: fixed;
	background-size: contain;
}

.profileheader {
	width: auto;
	height: max-content;
	position: absolute;
	bottom: -40px;
	display: flex;
	align-items: center;
	flex-direction: row;
}

.profiledetails {
	display: flex;
	flex-direction: column;
}

.profileicons {
	display: flex;
	flex-direction: row;
}

.profilepic {
	height: 150px;
	width: 150px;
	border-radius: 75px;
	background-color: gray;
	margin: 10px;
	background: url("assets/profile_1.jpg");
	background-size: cover;
}

.social-icon {
	height: 35px;
	width: 35px;
	margin-right: 5px;
	margin-top: 5px;
	cursor: pointer;
}

.blog-link {
	margin-right: 10px;
	margin-top: 15px;
	font-size: 20px;
	cursor: pointer;
}

.fit-to-container {
	height: 100%;
	width: 100%;
	border-radius: 50%;
}

.body-container {
	width: 50%;
	height: max-content;
	margin-top: 20px;
}

.underline {
	text-decoration: underline;
}

.experience-item {
	height: max-content;
	width: calc(100% - 20px);
	border-width: 0 0 0 6px;
	border-color: black;
	border-style: solid;
	padding-left: 20px;
	display: flex;
 	flex-direction: column;
	position:relative;
}

.experience-point {
	height: 20px;
	width: 20px;
	border-radius: 13px;
	background-color: black;
	position: absolute;
	left: -13px;
	top: 12px;
}

.checkboxes {
	margin-bottom: 20px;
  display: flex;
	flex-direction: row;
}

.checkbox {
	cursor: pointer;
}

.noselect {
  -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
}

.gallery-container {
	display: flex;
	-webkit-flex-wrap: wrap;
  flex-wrap: wrap;
	justify-content: center;
	margin-top: 10px;
}

.image-container {
	display: flex;
	width: 33%;
	height: 200px;
}

input[type="checkbox"]::before {
  content: "";
  width: 0.65em;
  height: 0.65em;
  transform: scale(0);
  transition: 120ms transform ease-in-out;
  box-shadow: inset 1em 1em black;
}

input[type="checkbox"] {
  -webkit-appearance: none;
  appearance: none;
  background-color: #fff;
  margin: 0;
	font: inherit;
  color: currentColor;
  width: 1.15em;
  height: 1.15em;
  border: 0.15em solid black;
  border-radius: 0.15em;
  transform: translateY(-0.075em);
	display: grid;
  place-content: center;
}

input[type="checkbox"]:checked::before {
  transform: scale(1);
}

@media only screen and (max-width: 1700px) {
	.image-container {
		height: 158px;
	}
}

@media only screen and (max-width: 1480px) {
	.body-container {
		width: 65%;
	}
	.image-container {
		height: 180px;
	}
}

@media only screen and (max-width: 1350px) {
	.image-container {
		height: 150px;
	}
}

@media only screen and (max-width: 1200px) {
  .coverphoto {
		background-size: auto;
	}
	.image-container {
		height: 150px;
	}
}

@media only screen and (max-width: 1100px) {
  .body-container {
		width: 80%;
	}
	.image-container {
		height: 160px;
	}
}

@media only screen and (max-width: 950px) {
	.image-container {
		height: 150px;
	}
}

@media only screen and (max-width: 890px) {
	.image-container {
		height: 135px;
	}
}

@media only screen and (max-width: 800px) {
	.body-container {
		width: 90%;
	}
}

@media only screen and (max-width: 700px) {
	.image-container {
		height: 115px;
	}
}

@media only screen and (max-width: 625px) {
  h1 {
		font-size: 30px;
	}
	.profilepic {
		height: 120px;
		width: 120px;
	}
	.profileheader {
		bottom: -60px;
	}
	.image-container {
		height: 250px;
		width: calc(100%);
		padding: 10px;
		display: flex;
		justify-content: center;
	}
}

@media only screen and (max-width: 515px) {
	.image-container {
		height: 200px;
	}
}

@media only screen and (max-width: 400px) {
  h1 {
		font-size: 30px;
	}
	.profilepic {
		height: 120px;
		width: 120px;
	}
	.profileheader {
		bottom: -60px;
	}
	.image-container {
		height: 180px;
	}
}

@media only screen and (max-width: 325px) {
  h1 {
		font-size: 25px;
	}
	.profilepic {
		height: 80px;
		width: 80px;
	}
	.profileheader {
		bottom: -40px;
	}
}
