* {box-sizing: border-box;}
body { 
		width: 100%;
  		margin: 0;
 		font-family: Arial, Helvetica, sans-serif;
   		height:100%;
		background-color:black;
		background-size:cover;
}

.header2{
	border-bottom:7px solid black;
	border-top:1px solid black;
	margin-top:-10%;
	width:100%;
	position:fixed;
	z-index:100;	
}

#header{ 
                background-color: black;

            }
#sidebar{
        background-color: #ddd;
    	float: left;
    	width: 200px;
		height:1000px;
		border:2px solid black;
            }
#main{
    background-color: black;
    display: flex;
    justify-content: space-evenly;
    border-bottom: 7px solid black;
    border-top: 1px solid black;
    box-shadow: 0px 10px 10px;
    width: 100%;
    position: relative;
    max-width: 100%;
    padding: 3%;
    padding-top: 0;
}

.aside img{
	position:absolute;
	width: 500px;
	margin-left: 30px;
	margin-top: 20px;
	
}


#footer{ 
        background-color: #ccc;
		border:2px solid black;
		
 }
.text{
	width: 99.5%;
	float: right; 
	padding-left: 560px; 
	font-size: 20px;
	position: absolute;
}
.text_2{
	border-bottom: 2px solid black; 
	font-size: 20px;
	width: 1200px;
}

.footer {
	width: 100%;
    height: 15vw;
    border-top: 1px solid black;
    padding: 10px;
    background-color: #ccc;
}
.footer ul{
	width: 100%;
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: grid;
    flex-wrap: wrap;
    flex-direction: row;
    grid-template-areas:
        "footer_1 footer_2 footer_3 footer_4 "
        "footer_5 footer_6 . .";
    grid-template-columns: 15% 37%;
    grid-template-rows: 110%;
    justify-content: space-evenly;
    align-content: stretch;
    align-items: center;
	font-size: 1vw;
}
.footer a{
	text-decoration: none;
	color:blue;
	font-size: 1vw;
}
.footer a:hover{
	opacity: 0.5;
}
#footer_1{
	grid-area: footer_1;
}
#footer_2{
	grid-area: footer_2;
}
#footer_3{
	grid-area: footer_3;
}
#footer_4{
	grid-area: footer_4;
}
#footer_5{
	grid-area: footer_5;
}
#footer_6{
	grid-area: footer_6;
}
@media screen and (max-width: 600px){
	#footer_5 img{
		width: 2vw;
	}
}
@media screen and (max-width: 1280px){
	#footer_5 img{
		width: 2vw;
	}
}
@media screen and (min-width: 1280px){
	#footer_5 img{
		width: 3vw;
	}
}