@font-face {
	font-family: 'Barlow';
	font-weight: normal;
	src: url('Fonts/Barlow-Regular.woff');
}

@font-face {
	font-family: 'Quicksand';
	font-weight: normal;
	src: url('Fonts/Quicksand-Bold.woff');
}

@keyframes wiggle {
    0.0% { transform: translate(2.0px, 1.0px); }
    50.0% { transform: translate(-2.0px, -1.0px); }
    100.0% { transform: translate(2.0px, 1.5px); }
}

@media (min-width: 62.5em) and (prefers-reduced-motion: no-preference) {
    .repo-button:hover {
        animation: wiggle 100.0ms linear 0.0s 5;
    }
    .brooklyn-text::after {
        background-color: #BCC6F9;
        color: #BCC6F9;
        content: '';
        bottom: -2.0px;
        left: 0;
        height: 2.0px;
        width: 100%;
        position: absolute;
        transform: scaleX(0);
        transition: transform 0.3s ease;
    }
    .brooklyn-text:hover::after {
        transform: scaleX(1);
    }
}

.repo-button {
    align-items: center;
    background-color: #BCC6F9;
    border-radius: 4.0px;
    color: white;
    display: flex;
    font-size: 0.95rem;
    height: 40.0px;
    justify-content: center;
    padding: 0 10px;
    text-align: center;
    text-decoration: none;
}

.brooklyn-text {
    color: #BCC6F9;
    position: relative;
    text-decoration: none;
}

