:root{
	--f-s: 2.5em;
    --margin: calc(var(--f-s) / 3);
    --line-height: 1.3em;
    --text-col: #7b8536;
    --mute-button-h: 10vh;
    --mute-stroke: 0.16em;
    --logo-size: 25vh;
}

@font-face {
    font-family: "tonka_mono";
    src: url("fonts/tonkamono0210-Regular.otf") format("opentype");
}

html, body{
	font-family: "tonka_mono";
	color: var(--text-col);
	
}

::-moz-selection { /* Code for Firefox */
  color: white;
  background: var(--text-col);
}

::selection {
  color: white;
  background: var(--text-col);
}

body{
	left: 0;
	top: 0;
	margin: 0;
/*	background-image: url("bg-2.png");*/
	background-size: 100% auto;
	background-repeat: no-repeat;
}

*{
	-webkit-font-smoothing: antialiased;
  	-moz-osx-font-smoothing: grayscale;
  	box-sizing: border-box;
}

.logo{
	  display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: calc(var(--margin) * 0.2);
    height: var(--logo-size);
    margin-bottom: calc(48vh - var(--logo-size) - (var(--margin) * 3.5));
}

.logo svg{
	 height: 100%;
}

.logo svg .st2{
	fill: var(--text-col);
}

.mainCont{
	display: flex;
}

.muteButton{
	height: var(--mute-button-h);
	width: var(--mute-button-h);
/*	border: var(--mute-stroke) solid var(--text-col);*/
	background: white;
	position: fixed;
	top: calc(var(--margin) * 1.6);
  right: calc(var(--margin) * 2);
	border-radius: 50%;
/*	padding: calc(var(--mute-button-h) / 10);*/
	cursor: pointer;
}

.muteButton.muted .mute{
	display: none;
}
.muteButton .unmute:not(.muteButton.muted .unmute){
	display: none;
}

.muteButton:hover svg .st2,.muteButton:hover svg .st2{
	fill: white;
}
.muteButton:hover svg .st0{
	fill: var(--text-col);
}
.muteButton:hover{
/*	border-color: white;*/
/*	background: var(--text-col);*/
}
.muteButton svg{
	height: 100%;
	stroke-width:calc(var(--mute-stroke) * 0.9);
}


.desc{
	font-size: var(--f-s);
	margin: 0 var(--margin);
	line-height: var(--line-height);
	padding-bottom: 2em;
}



.desc a{
	color: white;
	padding: 0px calc(var(--f-s) * 0.1);
	text-decoration: none;
}

.desc a:hover{
	background-color: transparent !important;
	color: var(--text-col);
}

.desc a::visited{
	color: white;
}



@media screen and (orientation:landscape) {
	.desc p{
/*		padding-right: 5%;*/
	}
	
}

@media screen and (orientation:landscape) and (min-width:2000px){
	:root{
		--mute-button-h: 9vh;
	}
}

@media screen and (min-width:700px) and (max-width: 1080px){
	
}
@media screen and (max-width: 700px){
	
}

@media screen and (orientation:landscape) and (max-width: 1080px){
	
}

@media screen and (min-width: 600px) and (max-width: 820px) and (orientation:portrait), (min-width: 821px) and (orientation:portrait){
	/*:root{
		--f-s: 1.5em;
	}*/

}
@media screen and (max-width: 600px) and (orientation:portrait){
	:root{
		--f-s: 1.3em;
		--logo-size: 21vw;
		--mute-button-h: 6vh;
	}
/*	.muteButton{
		bottom: calc(var(--margin) * 1.6);
		right: calc(var(--margin) * 1.6);
	}*/
	.logo{
		margin-bottom: calc(30vh - var(--logo-size) - (var(--margin) * 3.5))
	}
	
}




