@font-face {
    font-family: Kyrou9Regular;
    src: url(assets/Kyrou-9-Regular_1.woff);
}

@font-face {
    font-family: Kyrou9RegularXtnd;
    src: url(assets/Kyrou-9-Regular-Xtnd_1.woff)
}

@font-face {
    font-family: Acme5CompCaps;
    src: url(assets/Acme-5-Compressed-Caps-Outline.woff)
}

* {
    box-sizing: border-box;
}

body {
    font-family: Kyrou9Regular, sans-serif;
    background: #57B4E6;
    color: #fff;
}

/* Style the header */

.header {
    font-family: Kyrou9RegularXtnd, sans-serif;
    padding: 20px 20px 50px 20px;
    font-size: 10px;
    display: flex;
    flex-wrap: nowrap;
}

/* Create three unequal columns that floats next to each other */

.column {
    float: left;
    padding: 0 10px;
}

/* Left and right column */

.column.side {
    width: 350px;
    font-family: Kyrou9RegularXtnd, sans-serif;
}

/* Middle column */

.column.middle {
    width: calc(100% - 410px);
    max-width: 850px;
    margin-top: -15px;
    margin-left: 40px;
}

/* Clear floats after the columns */

.row:after {
    content: "";
    display: table;
    clear: both;
}

/* Style the footer */

/*
.footer {
    background-color: #f1f1f1;
    padding: 10px;
    text-align: center;
}
*/

/* Responsive layout - makes the three columns stack on top of each other instead of next to each other */

@media (max-width: 600px) {
    .column.side, .column.middle {
        width: 100%;
    }
}

.blacked {
    display: inline-block;
    position: relative;
    white-space: nowrap;
}

.blacked::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 60%;
    top: 50%;
    left: -5px;
    padding-right: 10px;
    background: black;
    z-index: -1;
}

.blacked a {
	text-decoration:none;
	color: white;
}

.left {
    width: 330px;
    margin-bottom: 20px;
	font-size: 10px;
}

.amber {
    font-family: Acme5CompCaps, sans-serif;
    font-size: 20px;
	line-height: 26px;
    color: #F7941D;
    padding: 0 30px 0 0;
}
.amber a {
	text-decoration:none;
	color: #F7941D;
}

.kionas {
    width: 80px;
    height: auto;
	padding:10px;
	
}

.dropdown {
    position: relative;
    display: inline-block;
    cursor: pointer;
	font-size: 10px;
}

.dropdown-content {
    display: none;
    /*position: relative;
    top:-75px;
    background-color: #f9f9f9;*/
    min-width: 160px;
    /* box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);*/
    z-index: 1;
    margin-top: -20px;
	font-size: 16px;
}

.dropdown-content a {
    color: black;
    padding: 2px 0px 2px 16px;
    text-decoration: none;
    display: block;
	font-size: 10px;
}

.dropdown-content a:hover {
    /*background-color: #f1f1f1;*/
    color: white;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown:hover .dropbtn {
    background-color: #3e8e41;
}