body {
	background-color: #fdcdc6;
	margin: 0px;
	padding: 0px;
	
}

font-family: "rl-horizon", sans-serif;
font-weight: 700;
font-style: normal;

.barlow-thin {
  font-family: "Barlow", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.barlow-extralight {
  font-family: "Barlow", sans-serif;
  font-weight: 200;
  font-style: normal;
}

.barlow-light {
  font-family: "Barlow", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.barlow-regular {
  font-family: "Barlow", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.barlow-medium {
  font-family: "Barlow", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.barlow-semibold {
  font-family: "Barlow", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.barlow-bold {
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.barlow-extrabold {
  font-family: "Barlow", sans-serif;
  font-weight: 800;
  font-style: normal;
}

.barlow-black {
  font-family: "Barlow", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.barlow-thin-italic {
  font-family: "Barlow", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.barlow-extralight-italic {
  font-family: "Barlow", sans-serif;
  font-weight: 200;
  font-style: italic;
}

.barlow-light-italic {
  font-family: "Barlow", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.barlow-regular-italic {
  font-family: "Barlow", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.barlow-medium-italic {
  font-family: "Barlow", sans-serif;
  font-weight: 500;
  font-style: italic;
}

.barlow-semibold-italic {
  font-family: "Barlow", sans-serif;
  font-weight: 600;
  font-style: italic;
}

.barlow-bold-italic {
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.barlow-extrabold-italic {
  font-family: "Barlow", sans-serif;
  font-weight: 800;
  font-style: italic;
}

.barlow-black-italic {
  font-family: "Barlow", sans-serif;
  font-weight: 900;
  font-style: italic;
}


.inter-<uniquifier> {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}

* {
	box-sizing: border-box;
}

h1 {
	color: white;
	font-family: 'Barlow';
	font-size: 5rem;
	font-weight: 900;
	text-align: center;
}

h2 {
	color: #53251e;
	font-family: 'Barlow';
	font-size: 3rem;
	font-weight: 900;
	font-style: italic;
	text-align: center;
}

h3 {
	font-family: 'Inter';
	color: #53251e;
	font-size: 2rem;
}

.footertxt {
	font-size: 1rem;
	color: white;
	font-family: 'Inter';
}

h4 {
	font-family: 'Inter';
	font-size: 1.2rem;
}

p {
	font-family: 'Inter';
	font-size: 1.2rem;
	font-weight: 400;
	font-color: #53251e;
	line-height: 1.8;
}

.grid-container {
	display: grid;
	grid-template-columns: auto auto auto;
	background-color: #FFE9E6;
	gap: 10px;
}

.about {
	border-radius: 30px;
	background-color: #ffe0db;
	height: auto;
	padding: 10px;
	width: 65%;
	margin: auto;
	margin-top: 40px;
	margin-bottom: 40px;
}

.abouttext {
	display: flex;
}

.shortbio {
	display: flex;
	padding: 1.3em;
}

.headshot {
	display: flex;
	width: 25vw;
	float: left;
	padding: 30px;
	max-width: 100%;
	height: auto;
	object-fit: contain;
}

.work {
	width: 65%;
	margin: auto;
	border-radius: 30px;
	background-color: #ffe0db;
	padding: 10px;
	margin-top: 10px;
	margin-bottom: 60px;
}

.img1 {
	background-image: url('images/beachlot.png');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	max-width: 100%;
	height: 600px;
	display: block;
	object-fit: contain;
}

.img2 {
	background-image: url('images/waves.png');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	max-width: 100%;
	height: auto;
	display: block;
	object-fit: contain;
	flex: 20%;
}

.img3 {
	background-image: url('images/flower.png');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	max-width: 100%;
	height: auto;
	display: block;
	object-fit: contain;
	flex: 20%;
}

.hero-section {
  position: relative;
  text-align: center;
  
  height: 50%;
}

.hero-text {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: white;
}

.button {
	font-family: 'Barlow';
	font-weight: 600;
	font-size: 1.2rem;
	color: white;
	background-color: #53251e;
	text-align: center;
	
	margin: 2em;
	padding: 1em;;
	border-radius: 10px;
}

.buttonbox {
	display: flex;
	justify-content: center;
}

header {
  text-align: center;
  flex: 100%;
  position: relative;
  color: white;
}

/* Centered text */
.centered {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 5rem;
  text-align: center;
  font-family: 'Barlow';
  font-weight: 900;
}


/* Style the topnav */

nav {
  display: flex;
  flex-wrap: wrap;
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: white;
  text-align: center;
  font-size: 1rem;
}

.topnav {
  justify-content: center;
  margin: auto;
}

nav li {
  position: relative;
  list-style: none;
  display: inline-block;
  vertical-align: middle;
}

.navimg {
  width: 4.5rem;
  height: auto;
  float: left;
  vertical-align: middle;
}

/* Style links in topnav */
nav li a {
  display: block;
  color: #53251e;
  font-family: 'Inter';
  font-size: 1.2rem;
  text-decoration: none;
  vertical-align: middle;
}

.topnav li a {
  padding: 1rem 2rem;
}

.logocont {
  display: flex;
  align-items: center;
  padding: 0;
  margin-left: 5rem;
}

.logo {
  padding: 0;
  display: flex;
  align-items: center;
  margin: 0;
  
}

.contact {
	border: 1px solid #53251e;
	margin-right: 5rem;
	display: flex;
	padding: 1.5rem;
	align-items: center;
	justify-content: center;
	vertical-align: middle;

}

.star-image {
	width: 22px;
	height: 22px;
	border-radius: 50%;
	overflow: hidden;
}

footer {
  text-align: center;
  padding: 8px;
  background-color: #547d89;
}

.footericons {
   display: inline-flex;
   margin-bottom: 50px;
}

.footertxt {
	margin-bottom: 30px;
	margin-top: 30px;
}

.instaicon {
	height: 40px;
	width: 40px;
	margin: auto;
}

.adobeicon {
	width: 65px;
	height: 65px;
	margin: auto;
	
}

.adobe {
	height: 100%;
	object-fit: contain;
}

.insta {
	object-fit: contain;
	height: 100%;
}

.meandbro {
  margin: auto;
  width: 35rem;
}

.aboutimg{
  width: 35rem;
  margin-bottom: 2rem;
}

.artistbio {
  width: 47rem;
  margin: auto;
  background-color: #FFE9E6;
  padding: 3rem;
  border-radius: 30px;
  margin-bottom: 2rem;
}

.artistcv {
  margin: auto;
  width: 47rem;
  background-color: #FFE9E6;
  padding: 3rem;
  border-radius: 30px;
  margin-bottom: 50px;
}

.prof {
  column-count: 2;
  column-gap: 0px;
  list-style-position: inside;
  list-style-type: none;
}

ul {
  font-family: 'inter';
  font-size: 1.2rem;
  list-style-type: none;
}

.profgallery {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
}

.profgallery img {
	width: calc(25% - 20px);
	height: auto;
	margin: 5px;
}

.profgallery img:hover {
	
}

@media only screen and (max-width: 768px) {
.profgallery {
	width: calc(50% - 20px);
}
}

@media only screen and (max-width: 480px) {
.profgallery {
	width: calc(100%-20px);
}
}

.portfolioembed {
}

