@import url(https://fonts.googleapis.com/css?family=Raleway:500,600,700,100,800,900,400,200,300);
a {
    color: white;
    text-decoration: none;
}

h1 {
    font-weight: normal;
    font-size: 40px
}

body {
    margin: 0px;
    background: transparent url(stardust.png) center top repeat;
    color: white;
    padding: 10px;
    max-width: 1048px;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Raleway', sans-serif;
}

.bar {
    display: flex;
    flex-direction: row-reverse;

    flex-wrap: wrap;
    border-bottom: 3px solid white;
    padding: 10px;
}

.projects {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    margin-bottom: 65px;
    margin-top: 65px;
}

.single-project {
    position: relative;
    margin-right: 15px;
    margin-bottom: 15px;
    width: 100%;
    max-width: 300px;
}

.projects img {
    object-fit: cover;
    width: 100%;
    height: 200px;
}

.cover {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: #00000042;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
}

.footer {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 45px;
}

/* Extra small devices (phones, 600px and down) */

@media only screen and (max-width: 600px) {
    .bar {
        justify-content: center;
    }
}

/* Small devices (portrait tablets and large phones, 600px and up) */

@media only screen and (min-width: 600px) {
    .bar {
        justify-content: center;
    }
}

/* Medium devices (landscape tablets, 768px and up) */

@media only screen and (min-width: 768px) {
    .bar {
        justify-content: space-between;
    }
}

/* Large devices (laptops/desktops, 992px and up) */

@media only screen and (min-width: 992px) {
    .bar {
        justify-content: space-between;
    }
}

/* Extra large devices (large laptops and desktops, 1200px and up) */

@media only screen and (min-width: 1200px) {
    .bar {
        justify-content: space-between;
    }
}