*, ::after, ::before {
    box-sizing: border-box;
}
.handwrite {
    font-family: 'Bad Script', cursive!important;
    color: #e72165;
    font-size: 1.2em;
}

.main {
    display: grid;
    grid-template-columns: 420px 1fr;
}
aside {
    display: flex;
    flex-flow: column wrap;
    justify-content: space-between;
    background-color: #333;
    height: 100vh;
    position: sticky;
    top: 0;
    box-sizing: border-box;
}
.aside-about {
    text-align: center;
    margin-top: 25px;
}
.aside-about * {
    line-height: 0;
}
.aside-about img {
    width: 170px;
    height: 170px;
    border-radius: 150px;
}
.aside-about-name {
    color: #ffffff;
    font-size: 25px;
    font-weight: 400;
    text-align: center;
}
.aside-about-job {
    color: rgba(255,255,255,0.6);
    text-align: center;
}
.aside-social {
    text-align: center;
    margin-bottom: 15px;
}
aside * {
    font-family: 'Anonymous Pro', monospace;

}
aside a {
    text-decoration: none;
}
.content * {
    font-family: 'Noto Sans', sans-serif;
}
.navbar-container {
    display: none;
}
.hero-title {
    font-size: 60px;
}

/* aside menu*/
.menu {
    position: relative;
    z-index: 10;
    padding-left: 50px;
}

.menu__item {
    position: relative;
    display: block;
    outline: none;
    margin: 0 0 1.5em;
    line-height: 1;
}

.menu__item-name,
.menu__item-label {
    position: relative;
    display: inline-block;
}

.menu__item-name {
    font-size: 20px;
}

.menu__item-label {
    margin: 0 0 0 0.5em;
}

.menu--ama {
    counter-reset: itemCounter;
}

.menu--ama .menu__item {
    font-size: 20px;
    font-weight: 500;
    margin: 2em 0;
    padding-left: 0.5em;
    color: #f1f1f1;
}

.menu--ama .menu__item:first-child {
    --menu-item-color:#e72165;
}

.menu--ama .menu__item:nth-child(2) {
    --menu-item-color:#e72165;
}

.menu--ama .menu__item:nth-child(3) {
    --menu-item-color:#e72165;
}

.menu--ama .menu__item:nth-child(4) {
    --menu-item-color:#e72165;
}

.menu--ama .menu__item::before {
    content: counter(itemCounter,decimal-leading-zero);
    font-size: 0.85em;
    font-weight: bold;
    position: absolute;
    right: 100%;
    bottom: calc(100% - 0.35em);
    counter-increment: itemCounter;
    color: #ddd;
}

.menu--ama .menu__item:hover::before,
.menu--ama .menu__item:focus::before {
    color: var(--menu-item-color);
}

.menu--ama .menu__item-name {
    font-size: 25px;
    font-weight: 500;
    display: flex;
    flex-wrap: wrap;
    padding: 0.5em 0 0 0;
    white-space: pre;
}

.menu--ama .menu__item-name::before,
.menu--ama .menu__item-name::after {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 0;
    width: 2.5em;
    height: 4px;
    background: #ddd;
}

.menu--ama .menu__item-name::after {
    background: var(--menu-item-color);
    transform: scale3d(0,1,1);
    transform-origin: 0% 50%;
    transition: transform 0.5s;
}

.menu--ama .menu__item:hover .menu__item-name::after,
.menu--ama .menu__item:focus .menu__item-name::after {
    transform: scale3d(1,1,1);
}

.menu--ama .menu__item-name span {
    display: inline-block;
}
.hamburger-lines .line2 {
    background-color: #e72165!important;
}
@media (max-width: 1000px) {
    .main {
        grid-template-columns: 1fr;
    }

    aside {
        display: none;
        z-index: 1;
    }
    .navbar-container {
        z-index: 2;
    }
    .navbar-container .hamburger-lines {
        display: block;
        height: 23px;
        width: 35px;
        position: absolute;
        top: 50px;
        left: 50px;
        z-index: 3;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .hamburger-lines .line {
        display: block;
        height: 3px;
        width: 100%;
        border-radius: 10px;
        background: #333;
    }

    .navbar-container {
        display: block;
        position: fixed;
        height: 64px;
    }

    .navbar-container input[type="checkbox"] {
        position: absolute;
        display: block;
        height: 60px;
        width: 60px;
        top: 30px;
        left: 38px;
        z-index: 5;
        opacity: 0;
    }

    .hamburger-lines .line1 {
        transform-origin: 0% 0%;
        transition: transform 0.4s ease-in-out;
    }

    .hamburger-lines .line2 {
        transition: transform 0.2s ease-in-out;
    }

    .hamburger-lines .line3 {
        transform-origin: 0% 100%;
        transition: transform 0.4s ease-in-out;
    }

    .navbar-container input[type="checkbox"]:checked ~ .menu-items {
        transform: translateX(0);

    }

    .navbar-container input[type="checkbox"]:checked ~ .hamburger-lines .line1 {
        transform: rotate(35deg);
        background: #e72165;
    }

    .navbar-container input[type="checkbox"]:checked ~ .hamburger-lines .line2 {
        transform: scaleY(0);
        background: #e72165;
    }

    .navbar-container input[type="checkbox"]:checked ~ .hamburger-lines .line3 {
        transform: rotate(-35deg);
        background: #e72165;
    }
}

@media (max-width: 600px) {

    .navbar-container input[type="checkbox"] {
        top: 10px;
        left: 10px;
    }

    .navbar-container .hamburger-lines {
        top: 20px;
        left: 10px;

    }
}