*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'DungGeunMo';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_six@1.2/DungGeunMo.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

body{
    font-family: 'DungGeunMo';
    background-color: yellow;
}

.leftbox{
    position: absolute;
    transform: translateY(-50%);
    top: 50%;
    left: 20%;
}


.rightbox{
    position: absolute;
    transform: translateY(-50%);
    top: 50%;
    right: 20%;
}

.look{
    color: red;
    
}

a:link,a:visited{
    color: blue;
}

a:hover{
    color: red;
}

.colorize{
    color: red;
}