@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;
}

body {
    background: black;
    color: antiquewhite;
    font-family: 'britannic_boldregular';
}

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


p {
  font-size: 25px;
  text-align: justify;
  line-height: 30px;
  margin: 0 auto;
    padding-left: 300px;
  position: absolute;
    top: 20px;
    right: 100px;
    left: 50px;
     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; 
                
}


strong {
    position: absolute;
    color: antiquewhite;
    font-size: 25px; 
    top: 520px; 
    left: 200px;
    text-shadow: -2px 2px 2px black,
				  1px 1px 2px black,
				 1px -1px 2px black;
				-1px -1px 2px black;
}

.correct {
      display: block;
    position: absolute;
    text-indent: -99999px;
    background: url("r.png");
    width: 50px;
    height: 50px;
    top: 140px;
    left: 700px;
}

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

.wrong {
    display: block;
    position: absolute;
    text-indent: -99999px;
    background: url("window.png");
    width: 200px;
    height: 300px;
    top: -2px;
    left: 105px;
}

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