body {
    margin: 0px;  
}
.wrapper {
    display: flex;
    flex-direction: column;
    font-family: 'Montserrat', sans-serif;
    min-height: 100vh;
  }
   
  .wrapper > * {
    padding: 20px;
  }
.page-header {
	display: flex;
    justify-content: space-between;
    top: 0; 
	left: 0;
	flex-direction: row;
	height: 38px;
	align-items: center;
	margin-left: 0;
	margin-right: 0;
	width: 98%;
	padding-left: 1%;
	padding-right: 1%;
}
  .page-header nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }
   
  .page-header ul {
    display: flex;
    order: 1;
    width: 100%;
    margin-top: 15px;
  }
#imenu {
	float: right;
	display: inline;
	margin-top: 0px;
	width: 40px;
}
#menu {
	display: none;
	right: 0;
	margin-top: 340px;
	width: 180px;
	height: 300px;
	background:#1A1A1A;
	transition: height 1s;
	font-size: 16px;
	text-align: right;
	position: fixed;
	border-top-left-radius: 0.5em;
	border-bottom-left-radius: 0.5em;
	opacity: 0.9;
	line-height: 30px;
}
#menu ul {
    color: aliceblue;
    padding-right: 10px;
    text-align: right;
}
#player {
    display: flex;
    font-size: 40px;
    color: rgb(201, 30, 30);
    overflow: auto;
    bottom: 0;
	width: 100%;   
}
   
  @media screen and (min-width: 550px) {
    .page-header ul {
      width: auto;
      margin-top: 0;
    }
   
    .page-header .cta-contact {
      order: 1;
    }
  }
  /* variables */
:root {
    --main-white-color: white;
    --main-purple-color: #9e89b8;
  }
   
  .page-main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 350px;
    background: var(--main-purple-color) url(../media/home.jpg) no-repeat center / cover;
    background-blend-mode: luminosity;
    color: var(--main-white-color);
	flex-grow: 1;
	margin-top: 15%;  
  }
   
  .page-main div {
    max-width: 500px;
  }
.page-about {
	display: flex;
	margin-top: 30%;
	padding-top: 8%;
	width: 80%;
	margin-left: 10%;
	}
.page-footer {
    display: flex;
    flex-direction: column;
	align-items: center;
  }
.page-footer ul {
    display: flex;
	flex-direction: row;  
    font-size: 1.5rem;
	margin-bottom: 5px;
  }
.page-footer a {
    display: flex;
	margin-right: 20%;
  } 