html, body {
	height: 100%;
	width: 100%;
}

html {
	display: table;
	margin: auto;
  font-family: 'hallo_sansblack', sans-serif;
}

.main {
	position: relative;
	width: fit-content;
	text-align: center;
	margin:auto;
	top: 100px;
  padding:10px;
}

h1 {
  font-size: 36pt;
}

h2 {
  font-size: 24pt;
}

h1,h2 {
  font-weight: 900;
  -webkit-text-stroke: 1px hsl(42deg 100% 40%); /* width and color */
  color: hsl(42deg 100% 60%);
}

p,a {
  color: hsl(42deg 100% 10%);
  font-weight: bold;
  font-size: 16pt;
  /*-webkit-text-stroke: 0.5px hsl(42deg 100% 20%);*/
}

p.footer {
  font-size: 12pt;
}

.blurredBackground {
	background-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 0 0.5rem 1rem rgba(255, 255, 255, 0.25);
	backdrop-filter: blur(0.3rem);
  border-radius: 20px;
}

body {
    display: table-cell;
    background-image: url("beeyard.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: hsl(42deg 100% 40%);
}

input[type="file"] {
  display: none;
}

.custom-file-upload {
  border: 1px solid #ccc;
  display: inline-block;
  padding: 6px 12px;
  font-size: 30pt;
  cursor: pointer;
  color: #000;
	background-color: rgba(255, 255, 255, 0.4);
}


#beeCanvas {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}
