@charset "utf-8";

/*기본세팅*/

* {
    margin: 0;
    padding: 0;
}

body {
    font-family: "맑은 고딕", MalgunGothic, arial, sans-serif;
    font-size: 14px;
    color: #333;
}

a {
    text-decoration: none;
    color: inherit;
}

ul,
li {
    list-style: none;
}

img {
    border: none;
}


header,
nav,
section,
footer {
    display: block;
}

.clear::after {
    clear: both;
    content: "";
    display: block;
}


.wrap {
    margin: 0 auto;
    width: 1200px;
}

/*header*/

header {
    width: 1200px;
    height: 100px;;
    background: #aaa;
}
header h1{
    float: left;
    width: 200px;
    padding-top: 30px;
}

header nav{
    width: 800px;
    float: right;
    background: #666;
}
.slider {
    width: 1200px;
    height: 300px;
    background: #bbb;
}
.contents {
    width: 1200px;
    height: 200px;
    background: #ccc;
}
section.con1{width: 500px;height: 200px; float: left; background: #111;}
section.con2{width: 350px;height: 200px; float: left; background: #222;}
section.con3{width: 350px;height: 200px; float: left;background: #333;}

footer{
    width: 1200px;
    height: 100px;;
    background: #ddd;
}
        
footer h3{
    width: 200px;
    float: left;
}
footer .copyright{
    width: 700px; 
    height: 100px;
    background: #444;
    float: left;
}
footer .sns{
    width: 300px;
    height: 100px;
    background: #555;
    float: left;
}


