html, body {
    margin: 0;
    padding: 0;
    border: 0;
    height: 100%;
    width: 100%;
}

* {
    box-sizing: border-box;
}

h1, h2, p, ul, a {
    font-size: 20px;
    font-family: 'Gowun Dodum', sans-serif;
}

ul {
    list-style: none;
    line-height: 25px;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

a {
    text-decoration: none;
    font-family: 'Gowun Dodum', sans-serif;
    color: rgba(5, 5, 5, .7);
    cursor: pointer;
}

a:hover {
    color: red;
}

body {
    display: flex;
    flex-flow: row nowrap;
    font-family: 'Gowun Dodum', sans-serif;
}

.left {
    width: 60%;
}

.description {
    width: 90%;
    margin: 0 auto;
    line-height: 20px;
}

.left h1 {
    font-size: 80px;
    text-align: center;
    margin-top: 70px;
    margin-bottom: 140px;
    text-shadow: 10px 10px 10px #000;
}

.left h2 {
    font-size: 80px;
    text-align: center;
    text-shadow: 10px 10px 10px #007EFB;
    color: #007EFB;
}

.right {
    width: 38%;
    height: calc(100% - 15px);
    overflow-y: scroll;
    margin: 10px 0 5px 2%;
}

.right .links {
    width: 100%;
    height: 100%;
    display: flex;
    flex-flow: column nowrap;
}

.links .link {
    width: 100%;
    height: 100%;
    border: 1px solid black;
    border-radius: 5px;
    padding: 20px 0;
    padding-left: 30px;
}

.links .link:hover {
    color: rgba(5, 5, 5, 1);
    font-size: 18px;
    font-weight: bold;
}