
: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;
}

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

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

main {
  padding: 7vw;
}

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



 p {
    font-size: clamp(20px, 2vw, 3vh);
    line-height: clamp(40px, 6vw, 6vh);
  }
  iframe {
  width: 100%;
  height: clamp(400px, 75vw, 75vh);
  border-radius: 10px;
  }
  img {
    border-radius: 10px;
  }



