@tailwind base;
@tailwind components;
@tailwind utilities;
@tailwind forms;
/*

@layer components {
  .btn-primary {
    @apply py-2 px-4 bg-blue-200;
  }
}

*/
/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *


 */

body {
	overflow-x: hidden;
	width: 100%;
}
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  width: 100%;
}

@font-face {
  font-family: "PramukhRounded";
  src: url(/fonts/PramukhRounded-Semilight.eot) format("woff"),
    url(/fonts/PramukhRounded-Semilight.ttf) format("truetype");
  font-weight: 200;
  font-style: normal;
}

@font-face {
  font-family: "PramukhRounded";
  src: url(/fonts/PramukhRounded-Semibold.eot) format("woff"),
    url(/fonts/PramukhRounded-Semibold.ttf) format("truetype");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "PramukhRounded";
  src: url(/fonts/PramukhRounded-Bold.eot) format("woff"),
    url(/fonts/PramukhRounded-Bold.ttf) format("truetype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "PramukhRounded";
  src: url(/fonts/PramukhRounded-Extrabold.eot) format("woff"),
    url(/fonts/PramukhRounded-Extrabold.ttf) format("truetype");
  font-weight: 800;
  font-style: normal;
}


@keyframes float {
	0% {
		transform: translatey(0px);
	}
	50% {
		transform: translatey(-15px);
	}
	100% {
		transform: translatey(0px);
	}
}
body.turbo-android {
  .turbo-android\:block{
    display: block;
  }

  .turbo-android\:hidden{
    display: none;
  }
} 
