@charset "utf-8";

* {
    margin: 0;
    padding: 0;
}

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

ul,
li {
    list-style: none;
}

img {
    border: 0;
}

body {
    font-family: "맑은 고딕", Malgun Gothic, arial, sans-serif;
}

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



/*메세지 박스 */
/*
높이 픽셀 안에서
가로 세로 수평에 위치하게 된다. 
*/

/*
.message{
    display: flex; 
    justify-content: space-around; 
    align-items: center;
    width: 300px;
    height: 500px; 
    padding: 1em;
    font-size: 2em;
}
*/



button{
    width: 100px;
    height: 30px;
}


.box{
    display: flex; 
    justify-content: space-around; 
    align-items: center;
    height: 100px;
    padding: 0.5em;
    border: 1px solid #f00;
}





