/* Style Settings */
@import url('https://fonts.googleapis.com/css?family=Karla:400,700&display=swap');
:root {
	--font: 'Karla', 'Karla', sans-serif;
}

body {
	background-color: #eee;
}

/* img hover */
.img__wrap {
	position:relative;
}

.img__description {
	background: rgba(0, 0, 0, 0.73);
    color: #fff;
    text-align: center;
    font-family: var(--font);
    /* transition: opacity .2s, visibility .2s; */
    font-size: 0.9rem;
    margin: 0 0 20px 0px;
    padding: 5px;
}

#userPhoto {
	/*width: 96px;
	height: 96px;*/
	display: block;
	margin: 35px auto 20px;
	/*-webkit-box-shadow: 0px 6px 0px 0px rgba(222, 218, 162, 1);
	-moz-box-shadow: 0px 6px 0px 0px rgba(222, 218, 162, 1);
	box-shadow: 0px 6px 0px 0px rgba(222, 218, 162, 1);*/
	transition: all 0.15s;
}

#userPhoto:hover {
	/*box-shadow: 0px 8px rgba(222, 218, 162, 1);*/
	transform: translateY(-2px);
}

#userPhoto:active {
	/*box-shadow: 0px 0px black;*/
	transform: translateY(6px);
}

#userName {
	color: #5d5d5d;
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.25;
	display: block;
	font-family: var(--font);
	width: 100%;
	text-align: center;
	text-decoration: none;
}

#links {
	max-width: 675px;
	width: auto;
	display: block;
	margin: 27px auto;
}
.img {
	max-width: 675px;
	width: 100%;
	display: block;
	margin-bottom: 0px;
}
@media only screen and (max-width: 700px) {
	#links {
		margin-left: 3%;
		margin-right: 3%;
	}
	.night_mode {
		margin-right: 40%;
	}
}

.link {
    display: block;
    background-color: #0574aa;
    color: #fff;
    font-family: var(--font);
    text-align: center;
    margin-bottom: 20px;
    padding: 17px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: bold;
    transition: all 0.15s;
    box-shadow: 0px 6px #085f8a;
}

.link:hover {
	/* background: #019489; */
	box-shadow: 0px 8px #118eca;
	transform: translateY(-2px);
}

.link:active {
	transform: translateY(6px);
	box-shadow: 0px 0px #cf2121;
}

.linktxt {
	display: block;
	color: #0270a6;
	font-family: var(--font);
	text-decoration: none;
	font-size: 1rem;
	font-weight: bold;
}

.linktxt:hover {
	/* background: #019489; */
}

.linktxt:active {
}

#proker {
	max-width: 300px;
	width: auto;
	display: grid;
	margin: 27px auto;
}

.footer {
	text-align: center;
	font-size: 1.3rem;
}

.footer a {
	text-decoration: none;
}

.media {
	background: #dadada;
    width: 38px;
    height: 38px;
    text-align: center;
    color: #085f8a;
    margin-bottom: 40px;
    box-shadow: 0px 6px #085f8a;
    transition: all 0.15s;
}

.media:hover {
	box-shadow: 0px 8px #118eca;
	transform: translateY(-2px);
}

.media:active {
	transform: translateY(6px);
	box-shadow: 0px 0px #9E4355;
}

