body{
    position: relative;
    float: left;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

main{
    position: relative;
    float: left;
    width: 100%;
    height: auto;
    min-height: 100vh;
    background-color: #C2B280;
    font-family: 'Roboto Condensed',sans-serif;
	font-size: 16px;
    box-sizing: border-box;
}

main .write_area{
    position: relative;
    float: left;
    width: 46%;
    height: auto;
    min-height: 550px;
    margin: 20px 2%;
    padding: 10px 5px 10px 10px;
    background-color: #FAFAFA;
    box-sizing: border-box;
}

main h1{
    position: relative;
    float: left;
    width: 100%;
    height: auto;
    text-decoration: underline;
}

main p{
    position: relative;
    float: left;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
}

@media screen and (max-width:768px){
    main .write_area{
        width: 96%;
    }
}