@font-face {
    font-family: Helvetica;
    src: url("../Fonts/Helvetica/Helvetica-Bold.ttf");
}

body {
    background: #101821 url("../Images/Waves_start.svg") no-repeat;
    background-size: 100%;
    font-family: Helvetica, serif;
    color: #fff;
}

::selection {
    background-color: #04A85E;
}

a {
    text-decoration: none;
}

.project-container {
    width: 100%;
    overflow-x: hidden;
    white-space: nowrap;
    cursor: grab;
    margin-top: 2%;
}
#about {
    position: relative;
    animation: fadeIn .6s ease-in both;
}
#about h1, h2 {
    text-align: center;
}

.fadeIn {
    animation: fadeIn .6s ease-in both;
}

.title {
    margin-left: 1%;
    font-size: 50px;
}

.tobero {
    margin-left: 1%;
    color: ghostwhite;
}

.project {
    display: inline-block;
    border-radius: 10px;
    background: floralwhite;
    min-width: 500px;
    min-height: 330px;
    width: 500px;
    box-shadow:0 10px 16px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
}
.project a {
    color: black;
}

.center {
    text-align: center;
}

.project-thumbnail {
    display:block;
    margin:auto;
    border-radius: 10px 10px 0px 0px;
}

.disable-select {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translate3d(0, -20%, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}