:root {
	--contentWidth: 500px;
	--grey-color: #808080;
}

body {
	margin: 0;
	padding: 0;
	font-family: Arial, sans-serif;
    text-align: center;
    color: #444;
}

.d-none {
   display: none!important;
}

/* header {
	background-color: white;
	color: #fff;
    position: absolute;
    top: 0;
    width: 100vw;
    z-index: 2;;
    display: flex;
    justify-content: space-evenly;
} */

nav {
	height: 2vh;;
	display: flex;
	justify-content: center;
	align-items: center;
}

nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

nav ul li {
	display: inline-block;
    padding: 6px;
}

nav ul li:hover {
	display: inline-block;	
}

nav ul li a {
	color: var(--grey-color);
	text-decoration: none;
	padding: 10px;
    border-radius: 10px;
}

nav ul li a:hover {
	color: #fff;
	text-decoration: none;
	/* padding: 10px; */
    background-color: white;
    color: #333;
    transition: all 255ms ease-in-out;
}

section {

}

#home {

	/* background-size: cover; */
	/* height: 100vh; */
	/* position: relative; */
	top: 10vh;
	width: 100vw;
	/* height: 100vh; */
	display: flex;
	justify-content: center;
	background-color: white;
}

.landing-img {
	max-width: var(--contentWidth);
	object-fit: contain;
}

/* .landing-foto {
	width: var(--contentWidth);
	height: 100vh;
	background-image: url("img/jasmina-rand.jpg");
	object-fit: scale-down;
	background-repeat: no-repeat !important;
	background-position: center center;
} */

.overlay {
	position: absolute;
	bottom: 0;
	right: 0;
	background-color: rgba(0, 0, 0, 0.5);
	padding: 20px;

}

.logo {
	max-width: 250px;
	height: 10vh;
	background-color: white;
}

/* menu */

.menu-icon {
    height: 30px;
    width: 30px;
}

.menu-container {
    /* border:1px solid rgb(98, 98, 98); */
    margin-right:  5vw;
    padding: 6px 7px;
    border-radius: 6px;
    /* border: 2px solid rgb(98, 98, 98); */
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;

}
.menu-container:hover {
    background-color: rgb(152, 152, 152);
    /* border: 2px solid rgb(152, 152, 152); */

    transition: ease-in-out 500ms;
}
.close-menu {
    background-color: rgb(98,98,98);
}

.topbar {
    width: 100vw;
    height: 10vh;
    border-bottom: 2px groove rgb(236, 236, 236);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    background-color: white;
    z-index: 100;
}


.opened-menu-div {
    position: fixed;
    top: 9vh;
    padding: 20px 0px;
    background-color: white;
    z-index: 99;
    width: 100vw;
    border-bottom: 2px groove rgb(236, 236, 236);
    border-top: 2px groove rgb(236, 236, 236);
	/* height: 5vh; */
}

.topbarrightimg {
    padding: 2px 3px;
    margin: 0px 0px;
    cursor: pointer;
}

.topbarright {
	display: flex;
	align-items: center;
	justify-content: center;
}






.overlay h1 {
	color: #fff;
	margin: 0;
    font-size: 2em;
}

.overlay p {
	color: #fff;
	margin: 0;
    font-size: 1.5em;
}

.container {
	display: flex;
	flex-direction: column;
	align-items: center;
}

/* .container-contact {

    width: 80%;
	margin: 0 auto;
    background-color: #444;
    color: #fff;
    border-radius: 10px;
    padding: 4px;
} */

.video-wrapper {
	display: flex;
	justify-content: space-between;
	margin-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
}



#songs {
    background-color: #444;
    color: #fff;
}

#contact {
    background-color: #444;
    color: #fff; 
	padding-bottom: 12px;
}

form {
	display: flex;
	flex-direction: column;
	width: 100%;
	margin: 0 auto;
}

label {
	margin-top: 20px;
}

input[type="text"], input[type="email"], textarea {
	padding: 10px;
	border: none;
	border-radius: 5px;
	margin-top: 5px;
}

button[type="submit"] {
	background-color: #333;
	color: #fff;
	border: none;
	border-radius: 5px;
	padding: 12px;
	margin-top: 20px;
	cursor: pointer;
}

button[type="submit"]:hover {
	background-color: #6f6f6f;
}

footer {
	background-color: #333;
	color: #fff;
	text-align: center;
	padding: 20px;
	/* position: absolute; */
	bottom: 0;
	/* width: 100%; */
}

.info-text {
    text-align: justify;
	width: var(--contentWidth)
}

.footer-links {
	color: white;
	text-decoration: none;
}

.width {
	width: var(--contentWidth)
}

.center {
	display: flex;
	justify-content: center;
}

.verymiddle {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	width: 100vw;
	height: 100vh;
}

iframe {
	margin-bottom: 24px;
  max-width: var(--contentWidth);
}


@media (max-width: 500px) { 
	:root {
		--contentWidth: 100vw;
	}


    iframe {
        height: 250px;
        width: 100vw;
    }

	.info-text {
		width: 92%;
	}

	.landing-img {
		width: 100vw;
	}

	/* .logo {
		width: 75vw;
	} */

}


@media (max-width: 334px) {
	nav ul li a {
		padding: 0px;
	}
}