@font-face {
    font-family: "hafs";
    src: url('/fonts/hafs.eot');
    src: url('/fonts/hafs.woff2') format('woff2'),
    url('/fonts/hafs.woff') format('woff'),
    url('/fonts/hafs.otf') format('opentype');
}


:root{
    font-family: 'Courier New', Courier, monospace;
    --ALPHA: rgb(255, 247, 234);
	--BETA: rgb(68, 68, 68);
	--OMEGA: rgb(239, 226, 205);
	--GAMMA: rgb(199, 160, 98);
	--transform: 100%;
}

[arabic]{
    font-family: hafs;
    font-size: 36px;
}

body{
    min-height: 100vh;
    background-color: rgb(252, 255, 245); display: flex;align-items: center;justify-content: center;
}

main{
    max-width:600px;
    margin:50px;
}

p{
    font-size: 1.2rem;
}

button{
    font: inherit;
    margin: 0;
    margin-top: 30px;
    overflow: visible;
    text-transform: none;
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif ;
    line-height: inherit;
    width: 100%;
    border-radius: 8px;
    touch-action: manipulation;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    font-size: 20px;
    padding: 14px 26px;
    font-weight: bold;
    height: 56px;
    box-sizing: border-box;
    outline: none;
    border: none;
    transition: all 0.4s;
    background: #075f11;
    color: white;
    -webkit-appearance: button;
    cursor: pointer;
}

fieldset{
    border:none;
    /* background-color:azure; */

}


blockquote {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	direction: rtl;
	font-family: 'KFGQPC Uthmanic Script Hafs';
	font-size: var(--arabicFontSize);
	background-color: var(--OMEGA);
	color: var(--BETA);
	padding: 10px 20px 15px;
	border-radius: 5px;
	margin: 0px;
	text-align: right;
	transition: color 200ms linear, background-color 200ms linear;
	width: fit-content;
	justify-self: center;
}
/* Arabic hover tooltip */
span[tooltip]::after {
	content: '';
	position: absolute;
	bottom: 100%-5px;
	left: 50%;
	margin-left: -5px;
	border-width: 5px;
	border-style: solid;
	border-color: var(--BETA) transparent transparent transparent;
	opacity: 0;
	display: none;
}
span[tooltip]:hover::after {
	opacity: 100;
	display: unset;
}
span[tooltip]::before {
	content: attr(tooltip);
	position: absolute;
	bottom: 100%;
	background-color: var(--BETA);
	padding: 8px 10px;
	border-radius: 5px;
	opacity: 0;
	transition: opacity 100ms linear;
	color: var(--ALPHA);
	font-family: 'Lato';
	left: 50%;
	white-space: nowrap;
	transform: translateX(-50%);
	font-size: 1rem;
	display: none;
}
span[tooltip] {
	position: relative;
	display: inline-block;
	margin-left: 5px;
	transition: color 50ms linear;
}
span[tooltip]:hover::before {
	opacity: 100;
	display: unset;
}
span[tooltip]:hover {
	color: var(--GAMMA);
}

input {

    margin-bottom: 8px !important;
    font-family: inherit;
    font-size: 14px;
    transition: border-color ease-in-out 0.25s;
    padding: 10px 12px;
    background: #F5F5F5 !important;
    border-radius: 8px;
    margin: 0px 0px 0px 0px;
    box-sizing: border-box;
    width: 30px;
    height: 30px;
    accent-color: green;

}


::selection {
    color: black;
    background: yellow;
  }