

body {
  background-image: url("images/crises.jpg");
  background-size: 20%;
}

/* spinning animation */
@keyframes spin{
    from{ transform:rotate(0deg); }
    to{ transform:rotate(360deg); }
}


.disk {
	animation: spin 1.8s infinite linear;
	border-radius: 50%;

	width:  15%;
	height: 15%;
}

.pfp {
    border-radius: 50%;
    width:  215px;
    height: 215px;
    display: block;    
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 15px;
    animation-fill-mode: forwards;
    
    animation: pfpspin 18s infinite ease-in-out;
}


@keyframes pfpspin{
    0% { transform:rotate(0deg); }
    10% { transform:rotate(0deg); }
    40% { transform:rotate(1080deg); }
    100% { transform:rotate(1080deg); }
}

/* flickering animation */
@keyframes flicker {
    0% { opacity: 0.40; }
    10% { opacity: 0.35; }
    20% { opacity: 0.42; }
    30% { opacity: 0.36; }
    40% { opacity: 0.37; }
    50% { opacity: 0.32; }
    60% { opacity: 0.34; }
    70% { opacity: 0.28; }
    80% { opacity: 0.36; }
    90% { opacity: 0.33; }
    100% { opacity: 0.40; }
}
.crt {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    border: 0px;
    overflow: hidden;
    line-height: 10;
    pointer-events: none;
    animation: flicker 0.06s infinite;
}


/*defining how a text-block looks*/
.block {
    border-style: solid;
    border-width: 1px;
    border-color: #fffacd;

    background-color: #133D42F6;

    color: #B06060;

    font-family: "Times New Roman, cursive";

    padding: 5px;
    margin: auto;
    margin-bottom: 15px;
    width: 50%;

    text-align: center;

    position: center, 15px;
}

.codeblock {
    border-style: solid;
    border-width: 1px;
    border-color: #fffacd;

    background-color: #000000;

    color: #FFFFFF;
    font-size: 11px;
    font-family: "monospace";
    text-align: left;
    white-space: pre; 

    padding: 5px;
    margin: auto;
    margin-bottom: 30px;
    width: 95%;


    position: center, 15px;
}

.codeblock p + p {
    margin: 0;
    padding: 0;
    line-height: 0;
}



b {
	color: #FF9090;
}

h1 {
	color: #FF9090;
}


a:link {
    color:#169e75;
}

a:visited {
    color: #169e75;
}

.dead-link {
    color:#884444 !important;
}


a:hover, a:active {
    color:#2b6856;
    text-decoration: underline;
    text-decoration-style: double;
}