html, body {
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    color: #ccc;
    background-color: black;
    font-family: verdana;
    font-size: 14px;
    float: left;
}

p {
    text-indent: 25px;
}

#menu-container {
    width: 170px;
    padding: 0 7px;
    height: 100%;
    float: left;
}

#content-container {
    padding: 0 10px;
    height: calc(100% - 20px);
    width: calc(100% - 204px);
    float: left;
}

.home-container {
    height: 100%;
    background: url(../img/about-background.jpg);
    background-size: cover;
    text-shadow: black 3px 3px 3px;
}

a:link, a:visited {
    color: #ccc;
}
a:hover {
    color: #fff;
}
a:active {
    color: #888;
}

.about-box {
    display: inline-table;
    margin: 7px;
}
.about-box > center > .about-box-video {
    box-shadow: black 5px 5px 10px;
    border-radius: 4px;
    -moz-border-radius: 4px;
    margin: 2px;
}

.home-container > header {
    background-color: rgba(0,0,0,0.5);
    box-shadow: rgba(0,0,0,0.5) 5px 5px 5px;
    width: 100%;
    margin: 7px;
}

footer {
    margin: 7px;
    margin-left: 180px;
    text-align: right;
}

#menu {
    text-align: center;
}

#menu > h1 {
    color: red;
    margin: 0;
    text-align: center;
    font-family: verdana;
    font-size: 30px;
}

.menu-button {
    display: block;
    text-decoration: none;
    padding: 7px;
    border-radius: 4px;
    -moz-border-radius: 4px;
    margin-top: 10px;
    background: -webkit-linear-gradient(#e00, #500);
    background: -o-linear-gradient(#e00, #500);
    background: -moz-linear-gradient(#e00, #500);
    background: linear-gradient(#e00, #500);
}

.menu-button:link, .menu-button:visited {
    color: #eee;
}

.menu-button:hover {
    color: #fff;
    background: -webkit-linear-gradient(#f00, #900);
    background: -o-linear-gradient(#f00, #900);
    background: -moz-linear-gradient(#f00, #900);
    background: linear-gradient(#f00, #900);
}

.nick {
    color: red;
    font-weight: bold;
}

.projects-items {
    list-style-type: none;
    padding: 0;
}

.projects-items > li {
    border-bottom: 1px solid #ccc;
    padding: 20px 0;
    text-align: justify;
}

#show-menu-button {
    display: none;
    width: 80px;
    min-height: 80px;
    cursor: pointer;
}

#show-menu-button i {
    display: block;
    margin: 12px auto;
    width: 100%;
    height: 12px;
    border-radius: 5px;
    -moz-border-radius: 5px;
    background: #444;
}

.gallery-page {
    height: calc(100% - 60px);
}

.my-site-thumbnail {
    width: 300px;
    height: 200px;
    overflow: hidden;
    position: relative;
    border: 1px #ccc solid;
    padding: 4px;
}

.my-site-thumbnail > iframe {
    width: 1200px;
    height: 800px;
    
    -ms-transform: scale(0.25);
    -moz-transform: scale(0.25);
    -o-transform: scale(0.25);
    -webkit-transform: scale(0.25);
    transform: scale(0.25);

    -ms-transform-origin: 0 0;
    -moz-transform-origin: 0 0;
    -o-transform-origin: 0 0;
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
}

.my-site-thumbnail > a {
    position: absolute;
    top: 0;
    left: 0;
    display: inline-block;
    width: 300px;
    height: 200px;
    z-index: 5;
}

.center { margin: 0 auto; }

.contact td {
	width: auto;
    text-align: center;
    padding-left: 10px;
    padding-right: 10px;
}

.contact td input, textarea, submit, button {
	background-color: #000;
	color: #fff;
	border: 1px solid #fff;
    border-radius: 2px;
	resize: none;
	padding: 5px;
	cursor: pointer;
}

.contact input[type=submit]:disabled, button:disabled {
    color: #555;
	border: 1px solid #555;
	cursor: not-allowed;
}

@media screen and (max-width: 1024px) {
    #show-menu-button {
        display: block;
    }
    #menu-container {
        width: 94px;
    }
    #menu {
        display: none;
    }
    #menu > h1 {
        font-size: 100px;
    }
    #menu > div {
        font-size: 40px;
    }
    #content-container {
        width: calc(100% - 128px);
    }
    .menu-button {
        line-height: 60px;
        border-radius: 14px;
        -moz-border-radius: 14px;
        margin-top: 10px;
        font-size: 40px;
    }
}
