@import url('https://fonts.googleapis.com/css2?family=Ubuntu+Sans+Mono:ital,wght@0,400..700;1,400..700&display=swap');

body {
    background-color: #0d1117;
    font-family: 'Ubuntu Sans Mono', monospace;
}

h1, h2, h3, h4 {
    font-family: 'Ubuntu Sans Mono', sans-serif;
    font-weight: 700;
}

p {
    font-family: 'Ubuntu Sans Mono', sans-serif;
    font-weight: 400;
}

.navbar {
    background-color: transparent !important;
}

.navbar-toggler {
    background-color: #ffffff!important;
}

.navbar-light .navbar-nav .nav-link .nav-link:focus, .navbar-light .navbar-nav .nav-link:hover {
    color: #ffffff!important;
}

.navbar-light .navbar-nav .nav-link, .nav-link:hover {
    color: #ffffff!important;
}

.hire-me, .hire-me:hover, .hire-me:focus, .hire-me:active {
    background: none;
    border-color: #ffffff!important;
    float: right;
    margin: 10px 10px;
}

.logo-container {
    height: 200px;
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.logo {
    animation: spin 500ms linear forwards;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(720deg);
    }
}

.intro {
    text-align: center;
    color: #ffffff;
}

.social-icons {
    text-align: center;
    margin-top: 20px;
}

.social-icons a {
    text-decoration: none;
    color: #ffffff;
    margin: 0 10px;
    font-size: 24px;
}

.social-icons a:hover {
    color: #70ff21;
}

.animated-grid {
    bottom: 0;
    display: flex;
    height: 40%;
    position: absolute;
    width:100%;
    overflow: hidden;
}

.floor {
    animation: none;
    background-image: linear-gradient(90deg, #70ff21 1px, transparent 0), linear-gradient(180deg, #a055ff 1px, transparent 0);
    background-position: top;
    background-size: 40px 20px;
    flex: 1 1 0%;
    -webkit-mask-image: -webkit-gradient(linear, left top, left bottom, from(transparent), to(#000));
    mask-image: -webkit-gradient(linear, left top, left bottom, from(transparent), to(#000));
    opacity: .6;
    transform: perspective(160px) rotateX(50deg) scaleX(2);
    transform-origin: top center;
    width: 100%;
    will-change:transform;
    z-index: -9999;
}

@media (min-width: 280px) {
    .floor {
        animation: grid-axis-animation 16s linear infinite forwards;
        will-change:background-position;
        z-index: -9999;
    }
}

@keyframes grid-axis-animation {
    from {
        background-position:0 100%
    }

    to {
        background-position:0 0
    }
}
