@charset "UTF-8";
body {
	/*margin-left: 50px;
	margin-right: 50px;
	margin-top: 50px;*/
}

/*nav menu*/
.nav-menu {
	padding-top: 20px;
	padding-bottom: 20px;
}
.nav-menu a {
	color: black;
	text-decoration: none;
}
.nav-menu a:visited {
	color:#299bf7;
}
.nav-menu a:hover {
	text-decoration: underline;
}
.page-active {
	border: 2px solid black;
	padding: 5px 5px 5px 5px;
}
li{
	display: inline;
	margin-left: 10px;
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
	text-decoration: none;
}
a {
	font-weight: bold;
}
a:hover {
	text-decoration: underline;
}

/*<b> tag messup*/
b {
		color: aqua;
}


.greentext {
	color: green;
}

.left {
	float: left;
}

.right {

	margin-right: 70%;
	margin-left: 300px;
}
h1 {
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
	font-size: 72px;
	padding-bottom: px;
}

h2 {
	margin-top: 0; 
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
}
h2:hover {
	text-decoration: underline;
}
h3 {
	color: black;
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
}
.links {
	position: relative;
}
marquee {
	text-decoration: underline;
}
.marquee {
	margin-top: 30px;
}

p {
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
}

/*languages*/
:lang(da) {
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
}

/*keyboard focus
:focus{
	background-color: #f4f4f4;
}*/

/*Form*/
.form {
	margin-top: 30px;
	background-color: #f4f4f4;
	padding: 20px 50px 20px 50px;
	font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, "sans-serif";
	margin-right: 50px;
}

/*font sizes*/
.font-size {
	margin-top: 20px;
	margin-bottom: 40px;
}
#px {
	font-size: 16px;
		margin-top: 0; 
}
#pt {
	font-size: 16pt;
}
#em {
	font-size: 1.6em;
}
#rem {
	font-size: 1.6rem;
}
#pc {
	font-size: 1.6pc;
}
#ex{
	font-size: 1.6ex;
}
#ch {
	font-size: 1.6ch;
}
#vw {
	font-size: 1.6vw;
}
#vh {
	font-size: 1.6vh;
}
#vmin {
	font-size: 1.6vmin;
}
#vmax {
	font-size: 1.6vmax;
}
#precent {
	font-size: 160%;
}
.longtext {
	font-size: 16px;
	line-height: 140%;
}
#toptext {
	position: absolute;
	margin-left: 20px;
	color: white;
}
.image {
	position: relative;
}
.fa-info-circle {
	margin-left: 5px;
}


/*Animation testing page*/
.left-sided-content {
	float: left;
	width: 60%;
	padding: 30px 50px 30px 50px;
}
.right-sided-content {
	margin-top: 100px;
	width: 30%;
	float: right;
}
.ad {
	width: 70%;
}
.animation-options {
	/*float: right;*/
	position: fixed;
	z-index: 1;
	right: 50px;
	bottom: 150px;
	background-color: #f3f5f7;
	padding: 20px 50px 30px 50px;
	border-radius: 5px;
	max-width: 500px;
}
.row-10 {
	padding-bottom: 10px;
}
.row-20 {
	padding-bottom: 20px;
}
.row-30 {
	padding-bottom: 30px;
}
.divider {
	padding-bottom: 3px;
	background-color: #e6e6e6;
	margin-top: 30px;
	margin-bottom: 20px;
}
.light-text {
	color:#9a9d9e;
}
.article img {
		float: left;
	height: 100%;
	width: auto;
	display: block;
		margin-right: 30px;
}
.article {
	height: 250px;
}

button {
	padding: 10px 20px;
	border: none;
	background-color: #299bf7;
	color: #fff;
	border-radius: 30px;
	margin-right: 10px;
	margin-top: 10px;
}
button:hover {
	-webkit-box-shadow: 0px 0px 1px 2px rgba(0,0,0,0.15); 
box-shadow: 0px 0px 1px 2px rgba(0,0,0,0.15);
}
button:focus {
	background-color: #299bf7;
}
.button-pressed {
	background-color: #004ac1;
}
.footer {
	background-color: black;
	padding-top: 30px;
	padding-bottom: 60px;
	color: white;
}
.animation-1-nav {
	margin-left: auto; 
	background-color: black; 
	color: white; 
	padding-top: 20px; 
	padding-bottom: 30px;
}
.animation-1-nav ul {
	float: left;
}

.footer ul li {
	display: block;
	margin-bottom: 10px;
}
.footer-ul-left {
	float: left;
}

/*jump animation */
.jump-anim {
	animation: .4s jump ease infinite alternate;
	border: solid 10px #d4dce3;
}
@keyframes jump {
  0% {
    transform: scale(1);
    box-shadow: 0 1px 2px rgba(0,0,0,.15);
  }
  100% {
    transform: scale(1.05);
    box-shadow: 0 4px 20px rgba(0,0,0,.1);
  }
}

/*Floating animation*/
.float-anim{
    animation: float 01s infinite ease-in-out;
	-webkit-box-shadow: 0px 0px 12px 5px rgba(0,0,0,0.15); 
box-shadow: 0px 0px 12px 5px rgba(0,0,0,0.15);
}
@keyframes float {
    50% {
        transform: translate(0, -5%);
    }
}


/*Rainbow animation*/
.rainbow-anim {
	border:2px solid black;
  padding: 2rem 1rem;
  min-height: 3em;
  resize: both;
  background: #ffd73e33;
  border-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='100' height='100' viewBox='0 0 100 100' fill='none' xmlns='http://www.w3.org/2000/svg'%3E %3Cstyle%3Epath%7Banimation:stroke 5s infinite linear%3B%7D%40keyframes stroke%7Bto%7Bstroke-dashoffset:776%3B%7D%7D%3C/style%3E%3ClinearGradient id='g' x1='0%25' y1='0%25' x2='0%25' y2='100%25'%3E%3Cstop offset='0%25' stop-color='%232d3561' /%3E%3Cstop offset='25%25' stop-color='%23c05c7e' /%3E%3Cstop offset='50%25' stop-color='%23f3826f' /%3E%3Cstop offset='100%25' stop-color='%23ffb961' /%3E%3C/linearGradient%3E %3Cpath d='M1.5 1.5 l97 0l0 97l-97 0 l0 -97' stroke-linecap='square' stroke='url(%23g)' stroke-width='3' stroke-dasharray='388'/%3E %3C/svg%3E") 1;
}

/*Border animation*/
.border-anim {
	animation: .6s border-appear ease infinite alternate;
}
@keyframes border-appear {
	0% {
		border: 5px solid #fdc50d;
	}
	100%{
		border: 5px dashed #fdc50d;
	}
}

/*shadow-animation*/
.shadow-anim {
	animation: .6s shadow ease infinite alternate;
}
@keyframes shadow {
	100% {
		-webkit-box-shadow: 1px 1px 8px 9px rgba(120,60,226,0.5); 
box-shadow: 1px 1px 8px 9px rgba(120,60,226,0.5);
	}
}

/*Our normal border*/
.border {
	border: 5px dashed #d6347b;
}

/*Instructions page*/
.dialogue-box {
	position: absolute;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
	padding: 30px 100px 60px 100px;
	background-color: #f3f5f7;
	max-width: 60%;
	text-align: center;
}

/*test page 2 for highlighting*/
.banner {
	position: relative;
}
.banner-h1{
	position: absolute;
	top: 300px;
	left: 100px;
	color: white;
}
.black{
	background-color: black;
	padding: 20px 10px 20px 10px;
}
.purple {
	background-color: #a054c1;
	padding: 20px 10px 20px 10px;
}
/*new highlighting options*/
.version1 {
	border: 2px dashed #FFCF4B;
	outline: 2px dashed #D6347B;
}
.version2 {
	border: 2px dashed #FFCF4B;
	outline: 2px dashed #D6347B;
	animation: .5s jump02 ease infinite alternate;
}
@keyframes jump02 {
  0% {
    transform: scale(1);
    box-shadow: 0 1px 2px rgba(0,0,0,.15);
  }
  100% {
    transform: scale(1.005);
    box-shadow: 0 4px 20px rgba(0,0,0,.1);
  }
}

.link-highlight {
	background-color: #ffc3c3 !important;
	color: #000 !important;
}
.link-highlight-focus {
	background-color: #ffc3c3 !important;
border: 2px dashed #299BF7 !important;
	/*outline: 2px dashed #df4646 !important;*/
color: #000 !important;
	
}
.confirmed-misspelling-highlight {
	background-color: #ffce81 !important;
	color: #000 !important;
}
.confirmed-misspelling-highlight-focus {
	background-color: #ffce81 !important;
border: 2px dashed #1C86DB !important;
	/*outline: 2px dashed #FCA425 !important;*/
color: #000 !important;
}
.potential-misspelling-highlight {
	background-color: #b5e5ff !important;
	color: #000 !important;
}
.potential-misspelling-highlight-focus {
	    border: 2px dashed #ff6c00 !important;
    background-color: #b5e5ff !important;
	/*outline: 2px dashed #299bf7 !important;*/
    color: #000 !important;
}
.policy-highlight {
	background-color: #fcf474 !important;
	color: #000 !important;
}
.policy-highlight-focus {
	background-color: #fcf474 !important;
	border: 2px dashed #4976B9 !important;
	/*outline: 2px dashed #FFCF4B !important;*/
	color: #000 !important;
}
.dp-highlight {
	background-color: #B2F1F4 !important;
	color: #000 !important;
}
.dp-highlight-focus {
	background-color: #B2F1F4 !important;
	border: 2px dashed #D43F3A !important;
	color: #000 !important;
}

#shadow {
	padding-bottom: 50px;
	width: 100px;
	background-color: aliceblue;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 30px;
	border-radius: 3px;
	box-shadow: 0px 0px 6px #00000029;
}