@font-face{
    font-family:"Frutiger";
    src:url(fonts/Frutiger.ttf) format('truetype');
    font-style:normal;
}

@font-face{
    font-family: "Courier";
    src:url(fonts/CourierPrime-Bold.ttf) format('truetype');
    font-weight: bold;
}


body{
    background-color: #000;
    background-image: url("images/codeoflife.gif");

    min-width: 700px;
}

/* header */
.header{
    width: 100%;
    overflow: hidden;

    margin-top: 50px;
    rotate: -2deg;
}

.header a{
    display: block;
    width: 120px;
    
    background-color: #090;
    padding: 8px 20px;
    margin-left: 25px;

    color: #020;
    font: normal 18px 'Frutiger';
    text-decoration-line: none;
}

.header a:hover{
    filter: brightness(1.2);
    text-decoration-line: underline;
}

.scroll{
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    overflow: hidden;
    user-select: none;
    
    white-space: nowrap;
    font: bold 36px 'Frutiger';
    color: #0d0;
    text-shadow: 0 0 8px #0a0;
    word-spacing: 30px;

    background-color: #010;
    padding: 10px 0;
}

.scroll .scrollitem{ 
    max-width: none;
    animation: scrolling 10s linear infinite; 
}

@keyframes scrolling {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(-100%, 0);
  }
}

/* container items */
.container{
    color: #fff;

    width: 80%;
    margin: 0 auto;
    margin-top: 30px;
}

.container a{ color: #7c7cff; }

.container table{
    border: 2px solid #0f0;
    border-spacing: 0;
    background-color: #000000bb;
}

.container th{
    margin: 0;
    padding: 15px 10px;
    border: 1px solid white;

    font: normal 16px 'Times New Roman';
}