:root {
  --accent: #3e69a9
}


html, 
body {
    height: 100%
}

body {
    background-color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 500;
    margin: 0
}

a {color: var(--accent)}
a:hover {color: #558fe5}
a:active {position: relative; top: 1px}

h1 {
    color: var(--accent);
    font-size: 36px;
    font-weight: 800
}

h1 span {
    display: block;
    font-size: 24px
}


#container {
    max-width: 1000px;
    padding: 3rem;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    column-gap: 30px;
    align-items: center;
	justify-content: center
}

#content_left, #content_right {flex: 1}
#desktop_image, #mobile_image {
    width: 100%;
    max-width: 400px;
    height: auto
}

#mobile_image {display: none; margin: 0 auto 30px; max-width: 300px}


#text {
    font-size: 24px
}

#iworkwith {
    margin-top: 30px
}

.typewrite {
    padding: 7px 16px 7px 0;
    background-color: var(--accent);
    color: white;
    border-radius: 12px;
    margin-left: 5px
}

.typewrite > .wrap {
    border-right: 2px solid white;
    padding-right: 3px;
    animation: caret 1s steps(1) infinite
}

@keyframes caret {
    50% {border-color: transparent}
}

#space {
    display: inline-block;
    width: 21px
}

svg {
    color: var(--accent) !important
}

#shuudan {
    margin-top: 30px
}

#shuudan svg {
    width: 31px;
    height: 25px;
    fill: none;
    vertical-align: middle;
    margin-right: 7px
}

.mobile_br {
    display: none
}

#player {
	width: 500px
}

@media all and (-ms-high-contrast:none) {
	#content_right { margin-left: 30px }
}