html, body,
ul, ol, li,
h1, h2, h3, h4, h5, h6, p,
form, input, div {
    margin: 0;
    padding: 0;
}
a {
    text-decoration: none;
}

.container {
    width: 1000px;
    margin: 0 auto;
}

header {
    padding: 10px 0;
    height: 40px;
    width: 100%;
    background-color: rgba(202,228,229,0.8);
    position: fixed;
    top: 0px;
    z-index: 10;
}

.trim-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-size: cover;
    display: inline-block;
}

.header-left {
    height: 40px;
    color: rgb(100,100,100);
    float: left;
}

.header-left span {
    padding-left: 15px;
    font-size: 18px;
    line-height: 40px;
    float: right;
}

.header-right {
    padding: 0 30px;
    line-height: 40px;
    font-size: 15px;
    font-weight: bold;
    float: right;
    color: white;
    background-color: rgba(73,168,156,0.5);
    border-radius: 5px;
    transition: 0.3s;
}

.header-right:hover {
    background-color: rgba(73,168,156,1);
}

.header-right:active {
    background-color: rgb(162, 235, 225);
    transition: 0s;
}

.fab {
    font-size: 18px;
    margin: 0 5px;
    opacity: 0.6;
}

.fab:hover {
    transition: 0.3s;
    opacity: 1;
}

.tw-icon {
    color: #34A1F2;
}

.gh-icon {
    color: #171515;
}

body {
    font-family: 'M PLUS Rounded 1c', sans-serif;
    background: linear-gradient(-135deg, rgb(238, 255, 254), rgb(243, 219, 191));
    background-attachment: fixed;
}

.main {
    text-align: center;
    width: 100%;
    margin-top: 100px;
    padding: 20px;
    background-color: white;
    color: #808080;
}

.main h1 {
    letter-spacing: 6px;
    font-weight: normal;
    font-size: 24px;
    margin-bottom: 30px;
    padding-bottom: 12px;
    border-bottom: #dadada solid 1px;
}

.body-contents {
    display: flex;
    flex-wrap: wrap;
}

.body-contents h1 {
    text-align: center;
    color: #808080;
}

.hand-write {
    font-family: 'Damion', cursive;
    font-size: 60px;
    color: rgba(73,168,156,1);
    transform: skewY(-10deg);
    display: inline-block;
}

.contents {
    margin: 15px 5px 30px 5px;
    flex: auto;
    width: 30%;
}

.contents p {
    font-size: 12px;
}

@media screen and (max-width: 1000px) {
    .container {
        width: 700px;
        margin: 0 auto;
    }
    .contents {
        flex: auto;
        width: 45%;
    }
}

@media screen and (max-width: 700px) {
    .container {
        width: 400px;
        margin: 0 auto;
    }
    .contents {
        margin: 15px auto;
        width: 90%;
    }
    .body-contents {
        display: flex;
        flex-direction: column;
    }
}
