body {
    font-family: 'menlo';
    font-family: 'Roboto Mono';
    /* font-family: "Source Sans Pro", "Helvetica Neue", Helvetica, Arial, sans-serif; */
    color: rgb(250, 250, 250);

    background: #0d1117; /*rgb(10, 10, 10);*/

    font-size: 14px;
}

.wrapper {
    padding: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

@media screen and (max-width: 680px) {
    .wrapper {
    }
}

h1 {
    position: relative;
}

/* h1::before {
  content: "# ";
  position: absolute;
  left: -20px;
  font-size: 75%;
  bottom: 2px;
} */
h2 {
    position: relative;
}
/* h2::before {
  content: "## ";
  position: absolute;
  left: -26px;
  font-size: 75%;
  bottom: 2px;
} */

h1,
h2 {
    font-family: 'Noto Sans JP';
}

a {
    color: #79c0ff;
    /* rgb(124, 240, 255); */
    text-decoration: none;
    position: relative;
    cursor: pointer;
    border-radius: 5px;
    transition: 60ms ease-in;
}
li a {
    margin: 0 -5px;
}
.add::before {
    content: '+';
    color: #0c0;
    display: inline-block;

    margin-left: -12px;
    width: 14px;
    font-weight: bold;
}
/* .add::before {
    content: ' ';

    background-color: #0c0;
    display: inline-block;
    margin-left: -12px;
    margin-right: 8px;
    margin-bottom: -2px;
    width: 4px;

    height: 14px;
    position: relative;
} */
.remove {
    /* opacity: 0.6; */
    color: rgba(255, 255, 255, 0.6);
}
.remove::before {
    display: inline-block;
    text-decoration: none;
    content: '-';
    color: #f00;
    margin-left: -12px;
    width: 14px;
    font-weight: bold;
}
/* .remove::before {
    content: ' ';
    background-color: transparent;
    border: solid transparent 5px;
    border-left-color: red;
    display: inline-block;
    margin-left: -12px;
    width: 0px;
    height: 0px;
    position: relative;
} */
.remove a {
    text-decoration-color: inherit;
}

a::before,
a::after {
    content: '\00a0';
}

a:hover {
    background-color: rgba(75, 144, 224, 0.3);
    color: #9fd2ff;
    /* rgb(125, 171, 224); */
}

ul {
    padding-left: 30px;
    margin: 10px 0;
}

ul li {
    list-style-type: none;
    position: relative;
}

ul li::before {
    content: ' ';
    position: absolute;
    width: 5px;
    height: 5px;
    background: rgb(250, 250, 250);
    border-radius: 50%;
    left: -15px;
    top: 9px;
}

.homephoto {
    width: 300px;
    height: 400px;

    display: block;
    float: left;
    margin-right: 25px;
    margin-bottom: 25px;
    border-radius: 5px;
    background-image: url('img/me.jpg');
    opacity: 0.85;
    background-size: cover;
}

.homeright {
    display: block;
    float: left;
    width: 300px;
    padding-bottom: 100px;
}

.title {
    color: rgb(231, 195, 255);
}

.stuff {
    margin-top: 30px;
}

.col-1,
.col-2 {
    float: left;
    margin-top: 30px;
    margin-right: 30px;
    display: block;
}

.col-2 {
    float: right;
}

@media (max-width: 960px) {
    .homephoto {
        width: calc(18.75vw + 120px);
        height: calc(50vw - 80px);
        background-position: 50% calc(6.25vw - 60px);
    }
}

@media (max-width: 641px) {
    .homephoto {
        height: 240px;
        width: 240px;
        background-position: 0 -20px;
        float: none;
    }
    .homeright {
        float: none;
    }
    .col-1,
    .col-2 {
        float: none;
    }
}

@media (max-width: 481px) {
    .homephoto {
        width: calc(100vw - 50px);
        height: calc(85vw - 50px);
        background-position: 0 -7.5vw;
    }
    .stuff {
        margin-top: 40px;
    }
    .col-1,
    .col-2 {
        float: none;
        margin-top: 50px;
    }
}
