* {
    font-family: 'Open Sans', arial, sans-serif;
}

body {
    -webkit-font-smoothing: antialiased;
}

.bg {
    position: fixed;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    background: url('../img/bg.JPG') center center;
    background-size: cover;
    z-index: -2;
}

.language {
    position: absolute;
    top: 20px;
    right: 5%;
    padding: 5px;
    background-color: aliceblue;
}

.language>a {
    color: rgba(5, 30, 5, 1);
}

.language:hover {
    text-decoration: underline;
}

.container {
    width: 90%;
    margin: 15% auto 0;
    text-align: center;
    color: #fff;
}

.container span.logo {
    width: 150px;
    height: 150px;
    display: block;
    background: url('../img/me.jpg') center center no-repeat;
    background-size: 150px;
    text-indent: -9999px;
    padding: 0;
    margin: 30px auto;
    border: 3px #fff solid;
    text-align: center;
    border-radius: 50em;
}

.container p {
    margin: 0.8em 0;
    font-weight: 300;
    text-shadow: #000 0 0 3px;
    background-color: rgba(0, 0, 0, 0.6);
}

.container p.headline {
    font-size: 1.5em;
    line-height: 1.6em;
}

.container p.motto {
    font-size: 1.3em;
    line-height: 1.4em;
}

.container p b {
    font-weight: 600;
}

a {
    color: #fff;
    text-decoration: none;
}

:focus {
    outline: #00FF00 dotted thick;
    text-decoration: underline;
}

ul {
    display: block;
    padding: 0;
    background-color: rgba(5, 30, 5, 0.8);
}

ul li {
    display: inline-block;
    margin: 0 10px;
}

ul li a {
    opacity: 0.7;
    padding: 15px 0 0 1px;
}

ul li a:hover {
    opacity: 1;
    color: chartreuse;
    transition: all 0.3s ease-in-out;
}

ul li a:focus {
    opacity: 1;
    color: chartreuse;
    transition: all 0.1s ease-in-out;
}