<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body, html {
     background-color: #EBECF0;
}
 body, p, button {
     font-family: monospace;
     letter-spacing: -0.2px;
     font-size: 16px;
}
 div, p {
     color: #61677C;
     text-shadow: 1px 1px 1px #FFF;
}
 h1 {
     font-size: 16px;
     padding: 0px 20px 10px 20px;
}

.container {
  display: flex;
  flex-wrap: wrap;
  height: 100%;
  
  align-items: center;
  text-align: center;
  justify-content: center;
}

.box {
  flex-basis: 49%;
  box-sizing: border-box;
  padding: 30px 60px 30px 60px;
}

.buttons a {
    width: auto;
    border-radius: 13px;
    padding: 10px 20px 5px 20px;
    color: #ffffff;
    background-color: #61677C;
}

.tags {
  padding: 0px 30px 0px 30px;
  line-height: 36px;
}

.tags a {
	white-space: nowrap;
	width: auto;
	border-radius: 13px;
	padding: 5px 10px 5px 10px;
	text-decoration: none;
	color: #ffffff;  
    background-color: #61677C;
	text-shadow: none;
}

.buttons a:hover, .tags a:hover {
	color: #61677C;  
    background-color: #ffffff;
}

/* Modal windows */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 20px;	
    height:80%;	
    border-radius: 10px;
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.75);
    overflow: auto; 
}

.close {
    position: absolute;
    top: 0;
    right: 0;
    padding: 10px;
    cursor: pointer;
}

ol li {
	float: none;
}

ul {
	list-style-type: none;
	padding: 0;
	overflow: hidden;
	background-color: #61677C;
	border-radius: 30px;
    margin: 10px;
}

.menu {
	/* min-width: 500px; */
}

li {
	float: left;
}

li a {
	display: block;
	color: white;
	text-align: center;
	padding: 10px 16px;
    margin: 5px;
	text-decoration: none;
}

li a:hover {
	color: #61677C;
	background-color: white;	
	border-radius: 20px;
}

@media screen and (max-width: 400px) {
  .box {
    padding: 30px 5px 30px 5px;
  }
  
  li a {
	padding: 10px 6px; 
  }
} 

@media screen and (max-width: 900px) {
  .box {
	flex-basis: 98%;
  }
  .modal-content {
	width: 80%;
  }
}

@media screen and (min-width: 1400px) {
  .box {
    padding: 30px 120px 30px 120px;
  }
  .modal-content {
	width: 60%;
  }
}</pre></body></html>