.logo__cursor {
    display: inline-block;
    width: 10px;
    height: 1rem;
    margin-left: 5px;
    border-radius: 1px;
    animation:cursor 1.99s infinite;
}
@media(prefers-reduced-motion:reduce) {
 .logo__cursor {
  animation:none
 }
}
@keyframes cursor {
 0% {
  opacity:0
 }
 50% {
  opacity:1
 }
 100% {
  opacity:0
 }
}

.logo{
    font-weight: 700;
    font-family: "Open Sans", sans-serif;
    display: inline-block;
}

.logo img {
    height: 44px;
}

.logo__mark {
    margin-right: 5px;
    color:whitesmoke;
}

@media(prefers-reduced-motion:reduce) {
	.logo__cursor {
		animation: none;
        
	}
}

.logo__text {
    font-size: 14px;
    color: #65d9a5;
    font-family: 'Source Code Pro', monospace;
}