@font-face {
    font-family: RobotoMono;
    src: url('./RobotoMono-Regular.ttf') format('truetype');
    font-weight: 200;
}
@font-face {
    font-family: RobotoMono;
    src: url('./RobotoMono-Bold.ttf') format('truetype');
    font-weight: 800;
}
@font-face {
    font-family: RobotoMono;
    src: url('./RobotoMono-ThinItalic.ttf') format('truetype');
    font-style: italic;
}
@font-face {
    font-family: RobotoMono;
    src: url('./RobotoMono-LightItalic.ttf') format('truetype');
    font-style: italic;
    font-weight: 200;
}
@font-face {
    font-family: RobotoMono;
    src: url('./RobotoMono-MediumItalic.ttf') format('truetype');
    font-style: italic;
    font-weight: 400;
}
body {
    background-color: #111;
    font-family: RobotoMono;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow: hidden;
    -webkit-user-select: none;
    /* Safari */
    -ms-user-select: none;
    /* IE 10+ and Edge */
    user-select: none;
    /* Standard syntax */
}
#bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}
.main {
    position: relative;
    display: inline-block;
    margin-left: 15%;
    margin-top: 15vh;
    float: left;
}
.main>.title {
    font-size: 64px;
    font-weight: 600;
    letter-spacing: -0.1em;
    background: linear-gradient(to right, #11FF90 0%, #F00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: rainbow 15s linear infinite;
    font-style: italic;
    font-weight: 400;
    min-width: 150px;
    text-shadow: 0px 0px 5px rgba(255, 255, 255, 0.2);
}
.indent {
    margin-left: 25px;
}
.row {
    color: #FFF;
}
.spacer {
    margin-top: 25px;
}
.row.icon {
    position: relative;
    padding-left: 25px;
    margin-top: 5px;
}
.row.icon a {
    color: #FFF;
    text-decoration: none;
}
.row.icon img {
    filter: invert(100%) sepia(1%) saturate(0%) hue-rotate(27deg) brightness(114%) contrast(100%);
    width: 20px;
    height: 20px;
    top: 2px;
    position: absolute;
    left: 0px;
}
.projects {
    margin-left: 15%;
    margin-top: 15vh;
    float: left;
    position: relative;
    display: inline-block;
    height: 100%;


}
.projects>.project {
    position: relative;
    width: 300px;
    height: 200px;
    cursor: pointer;
    overflow:hidden;
    border-radius: 5px;
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.2);
}
.projects>.project>.img {
    width: 300px;
    height: 200px;
    overflow: hidden;
}
.projects>.project>.img img {
    width: 300px;
    height: 200px;
    transition: all 100ms linear;
}
.projects>.project:hover .img img {
    transform: scale(1.5);
    transition: all 500ms linear;
}
.projects>.project>.info {
    color: #FFF;
    text-decoration: none;
    position: absolute;
    bottom: 0;
    padding-left: 5px;
    padding-right: 5px;
    padding-top: 5px;
    padding-bottom: 5px;
    width: 290px;
    line-height: 24px;
    background: rgba(10, 10, 10, 0.4);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}
@keyframes rainbow {
    0% {
        filter: invert(0.30);
    }
    50% {
        filter: invert(1);
    }
    100% {
        filter: invert(0.3);
    }
}
@keyframes move_wave {
    0% {
        transform: translateX(0) translateZ(0) scaleY(1)
    }
    50% {
        transform: translateX(-25%) translateZ(0) scaleY(0.55)
    }
    100% {
        transform: translateX(-50%) translateZ(0) scaleY(1)
    }
}