body {
    font-family: PT Sans, sans-serif;
    text-align: center;
	font-size:20px;
    background-color: #f0f0f0;
	background-image:url(bg.png);
	background-size:cover;
	background-repeat:none;
}
@font-face {
  font-family: Eight;
  src: url(8.woff);
}
@font-face{
	font-family:PT Sans;
	src: url(PT_Sans-Web-Regular.ttf);
}
h1 {
	font-family: Eight;
	font-size: 5rem;
	color:#fff
}
h2 {
	font-family: PT Sans;
font-size:3rem;
color: #EF5B9B;
	background-color:#fff;
	border-style:solid;
	border-width: 0px;
	border-radius:50px;
	max-width:40%;
	margin:auto;
	margin-top:5%;
	position:relative;
	z-index:99;
}

h3 {
	font-family: PT Sans;
font-size: 4rem;
	color:#fff;
	text-align:center;
	padding-left:5%;
	padding-top:5%;
	padding-bottom:5%;
	padding-right:5%;
	background: linear-gradient(180deg, rgba(248,189,215,1) 0%, rgba(235,98,164,1) 36%, rgba(236,33,85,1) 100%);
	border-style:solid;
	border-color:#fff;
	border-radius:50px;
	margin:auto;
	margin-top:-2%;
	margin-bottom:5%;
	font-style:italic;

}
h4 {
	font-size: 4rem;
	color:#fff;
	font-style:italic;
}

#quiz-container {
	  position: absolute;
  	top: 50%;
  left: 50%;
	transform: translate(-50%, -50%);
    margin: 0;
    padding: 20px;
	padding-top:5%;
    border-radius: 10px;
    box-shadow: none;
	max-width:80%;
}

button {
    margin: 10px;
	width:60%;
    padding: 10px 20px;
    font-size: 4rem;
    cursor: pointer;
	color:#fff;
	border-radius:50px;
	border-color: #fff;
	border-width: 5px;
	border-style: solid;
	padding-left:2%;
	padding-right:2%;
	font-family:PT Sans;
}
.start {
background: linear-gradient(90deg, rgba(248,189,215,1) 0%, rgba(235,98,164,1) 36%, rgba(236,33,85,1) 100%);
}
.choose {
	background-color:#fff;
	color: #EF5B9B;
}
#fullscreen-button {
    position: fixed;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: background-color 0.3s;
}

#fullscreen-button svg {
    fill: #007BFF;
}

#fullscreen-button:hover {
    background-color: rgba(0, 123, 255, 0.1);
}

#fullscreen-button:focus {
    outline: none;
}

#fullscreen-dialog {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    z-index: 1000;
    color: white;
}

#fullscreen-dialog-content {
    display: flex;
    align-items: center;
}

#fullscreen-dialog-content p {
    margin: 0 10px 0 0;
}

#fullscreen-dialog-content button {
    margin: 0 5px;
    padding: 10px 20px;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

#fullscreen-dialog-content button:hover {
    background-color: #0056b3;
}

#fullscreen-dialog-content button:focus {
    outline: none;
}


