@charset "utf-8";
/* CSS Document */
@font-face {
    font-family: 'britannic_boldregular';
    src: url('britanic-webfont.woff2') format('woff2'),
         url('britanic-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: '28_days_laterregular';
    src: url('28_days_later-webfont.woff2') format('woff2'),
         url('28_days_later-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

body {
	background: black;
	color: white;
}


.background {
    margin: 0px auto;
	width: 1200px;
	height: 600px;
	background: url("room3.jpg");
	position: relative; 
}

p {
  font-family: 'britannic_boldregular';
  font-size: 30px;
  position: absolute;
    top: 490px;
    left: 420px;
     text-shadow: -2px 2px 2px black,
				  1px 1px 2px black,
				 1px -1px 2px black;
				-1px -1px 2px black;
}


em {
    color: darkred;
    font-size: 25px;
    position: absolute;
    top: 480px;
    left: 530px;
    -webkit-text-stroke: black .6px; 
    text-shadow: 2px 2px 3px white; 
}

.correct {
    display: block;
    position: absolute;
    text-indent: -99999px;
    background: url("book1.png");
    width: 200px;
    height: 200px;
    top: 226px;
    left: 120px;

}

.correct:hover {
    background-size: cover;
    -webkit-transform: scale(1.1);
    transform: scale(1.1); 
}

.wrong {
    display: block;
    position: absolute;
    text-indent: -99999px;
    background: url("book2.png");
    width: 200px;
    height: 200px;
    top: 90px;
    left: 853px;

}

.wrong:hover {
    background-size: cover;
    -webkit-transform: scale(1.1);
    transform: scale(1.1); 
}