

body {
	font-family: Arial;
	background-color: #262222;
	font-size: 11pt;
	color: white;
}

a {
	color: white;
	text-decoration: none;
}

.favico {
	position: static;
	vertical-align: middle;
	border-radius: 10%;
	animation: favico 0.5s ease-out;
}

.c {
	text-align: center;
}

.main {
	margin-top: 30px;
    margin-bottom: 30px;
}

.border {
	position: static;
	text-align: left;
	display: inline-block;
    min-width: 60%;
}

#bg {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-attachment: fixed; 
    background-size: cover;
    background-position: center center;
background-image: url("bg.png");
    opacity: 0.4;
    filter: alpha(opacity=40);
    z-index: -2;
}

#snow {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.flake {
	font-size: 50%;
	display: block;
	position: fixed;
}

.contactList {  /* Legacy: was used for a contact list, now only to change font size*/
	font-size: 120%;
}

.content {
	overflow: hidden;
	position: static;
	animation: content 0.55s ease-out;
}

.button {
	display: inline-block;
    box-shadow: 0 0 1rem 0 rgba(0, 0, 0, .2);   
    background-color: rgba(255, 255, 255, .15);
    backdrop-filter: blur(5px);
	border-radius: 12px;
	padding-top: 10px;
	padding-bottom: 10px;
	min-width: 250px;
    color: white;
}

.button:hover {
	animation: button 0.2s ease;
    background-color: rgba(99, 99, 99, 0.15);
    cursor: pointer;
}




#aboutContent, #contactContent, #workContent, #otherContent {
    display: none;
    margin-top: 20px;
}


@keyframes content {
	0% {
		transform: translateY(5%);
		opacity: 0;
	}

	100% {
		opacity: 1;
		transform: translateY(0%);
	}
}

@keyframes favico {
	0% {
		height: 96px;
		width: 96px;
	}

	100% {
		height: 128px;
		width: 128px;
	}
}


@keyframes button {
	0% {
		background-color: rgba(255, 255, 255, 0.15);

    }
    
	100% {
		background-color: rgba(99, 99, 99, 0.15);
	}
}


@media only screen and (max-width: 600px) {
	.border {
		text-align: left;
		display: inline-block;
		min-width: 90%;
    }

    .button {
        margin-top: 5px;
    }


}

@media only screen and (max-width: 875px) {
    .button {
        margin-top: 5px;
    }




}
