
:root {
  --font-light: 'Fredoka', sans-serif;
  --font-regular: 'Fredoka', sans-serif;
  --font-medium: 'Fredoka', sans-serif;

  --fontsize: clamp(18px, 5vw, 36px);
  --colour1: white;
  --colour2: #ff0080;
  /* pink  #ff0080 */
  /* blue  #0000ff */
  /* green #00ff80 */
  /* red   #ff4040 */
  /* yellow #ffff00 */
  /* white */
  /* black */

--bordersize: 5px;

}

@font-face {
  font-family: 'Fredoka';
  src: url('/media/fonts/Fredoka/Fredoka-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Fredoka';
  src: url('/media/fonts/Fredoka/Fredoka-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Fredoka';
  src: url('/media/fonts/Fredoka/Fredoka-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}



body {
  font-family: var(--font-regular);
  font-weight: 400;
  background: var(--colour1);
  color: var(--colour2);
  margin: 0;
  padding: 0;
}

    body, html {
      overflow: hidden;
      width: 100vw; height: 100vh;
    }
    canvas {
      display: block;
    }


p {
  position: absolute;
  top: 20px; /* adjust as needed */
  left: 50%;
  transform: translateX(-50%);
 
  margin: 0;
  margin-top: 5vh;
  
  font-size: clamp(25px, 10vh, 10vh);
  line-height: clamp(40px, 6vw, 6vh);
}




h1 {
  font-family: var(--font-heavy);
  font-weight: 500;
}

p.light {
  font-family: var(--font-light);
  font-weight: 300;
}



a:link {color: var(--colour2);}    
a:visited {color:var(--colour2);} 
a:hover {color: var(--colour2);}  
a:active {color: var(--colour2);} 
a {text-decoration: none;}


#dropdown-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
}



/* 
var -- line thickness
var -- colour
z-index -- text on bottom
*/





 /* ORIGIONAL drop down / title 
select {
  appearance: none;

  position: absolute;
  padding-top: 5vh;
  left: 50%;
  transform: translateX(-50%);

  font-family: var(--font-regular);
  font-weight: 400;
  font-size: clamp(25px, 10vh, 10vh);
  line-height: 1.2;

  color: var(--colour2);
  background-color: rgba(0, 0, 0, 0);
  border: none;

  text-align: center;      
  text-align-last: center;  

  box-sizing: border-box;

  cursor: pointer;
  appearance: none; 
}
*/



/* drop down / title WITH ARROW */
select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  background-color: rgba(0, 0, 0, 0);
  background-image: url("data:image/svg+xml;utf8,<svg fill='%23ff0080' height='6' viewBox='0 0 24 24' width='6' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: 90% 72%; 
  background-size: 0.6em;

  padding-right: 0.75em;
  
  position: absolute;
  padding-top: 5vh;
  left: 50%;
  transform: translateX(-50%);
  
  font-family: var(--font-regular);
  font-weight: 400;
  font-size: clamp(25px, 10vh, 10vh);
  line-height: 1.2;
  color: var(--colour2);

  border: none;
  text-align: center;
  text-align-last: center;

  box-sizing: border-box;
  cursor: pointer;
}






select:focus {
  outline: none;
  box-shadow: 0 0 0 0px rgba(0, 0, 0, 0);
  appearance: none; /* removes default styles in some browsers */
}
