/* TYPOGRAPHY */
h1 {
	font-size: 2.5rem;
	margin: .75em 0 .5em;
}
h2 {
	font-size: 2rem;
	margin: .5em 0 .75em;
	color: #233d5e;
}
h3 {
	font-size: 1.75rem;
	margin: .5em 0 .25em;
}

h1,h2,h3 {
    font-family: 'Dancing Script', cursive;
	clear: both;
}

/* LAYOUT */
body {
	background:url('../img/waves.png');
}

.menu {
    font-family: 'Dancing Script', cursive;
}

.menu a {
	color: #233d5e;
}

.wrapper {
	width: 100%;
	max-width:40rem;
	padding: 1rem; 
	margin: 0 auto;
	background-color: rgba(255, 255, 255, 0.5);
}


.hero {
	margin: 1rem -1rem;
	padding: 2.5rem;
	overflow: hidden;
	background-image:url('/img/logo.jpg');
	background-position: center;
	background-size: cover;
}

/* HERO */
.hero__image-container {
	width: 30%;
	float: right;
}
.hero__text-container {
	width: 70%;
	float: left;
}

.hero__image {
	width: 100%;
	height: 0;
	padding-top: 100%;
	background-image:url('../img/logo.jpg');
	background-position: 50% 50%;
	background-size: cover;
	border-radius: 50%;
}

.hero__text--primary {
	font-size: 3rem;
	color: #233d5e;
	margin: 0;
	font-weight: 600;
}	

.hero__text--secondary {
	color: white;
	font-weight: 600;
	font-size: 2.5rem;
	text-shadow: 1px 1px 1px #444;
    	font-family: 'Dancing Script', cursive;
}	

@media (max-width: 45rem) {
	.hero__image-container {
		display: none;
	}
	.hero__text-container {
		width: 100%;
		float: left;
	}
}


/* CV */
.cv {
	overflow: hidden;
	margin-left: 0;
	list-style-type: none;
}

.cv__item {
	margin: .25rem .5rem;
	display: flex;
}

.cv__item::before {
	content:'';
	border-radius: 50%;
	height: .5rem;
	width: .5rem;
	background-color: #233d5e;
	display: inline-block;
	margin: .5em .75rem;
}

.cv__left,
.cv__right {
	display: inline-block;
}

.cv__left {
	width: calc(100% - 5rem);
}

.cv__right {
	min-width: 4rem;
	margin-left: 1rem;
	font-weight: bold;
}

@media (max-width: 45rem) {
	.cv__item::after {
	    content: '';
	    border-radius: 0;
	    height: 2px;
	    width: calc(100%);
	    background-color: #233d5e;
	    display: inline-block;
	    margin: .5em 0;
	}
	.cv__item::before {
	    display: none;
	}
	.cv__item {
		flex-direction: column;
	}

	.cv__left,
	.cv__right {
		float: none;
		width: 100% !important;
		margin-left: 0;
	}
}


/* CONTACT */
.contact {
	overflow: hidden;
	margin-left: 0;
	list-style-type: none;
}

.contact__icon {
	width: 1rem;
}

.contact__left,
.contact__right {
	display: inline-block;
}

.contact__item {
	margin: .25rem .5rem;
	display: flex;
}

.contact__left {
	width: 7rem;
}

@media (max-width: 45rem) {

	.contact__item {
		flex-direction: column;
	}

	.contact__left,
	.contact__right {
		float: none;
		width: 100% !important;
	}
}


.contact__right {
	width: calc( 100% - 7rem);
}
