/* CSS basic styles */

body {display: block; margin: 0;}
h1 {text-align: center; font-family: 'Roboto', sans-serif;}
h2 {text-align: center; font-family: 'Roboto', sans-serif;}
h3 {line-height: 0;}
h4 {line-height: 0; font-family: 'Roboto Mono', monospace; color: grey; font-weight: normal;}
h5 {font-family: 'Roboto', sans-serif; color: grey; font-weight: bold; font-size: 14px;}
p {font-family: 'Roboto', sans-serif; color: grey; font-size: 13px;}
a {font-family: 'Roboto', sans-serif; color: grey; font-size: 14px;}
ul {padding: 0;}

/* Classes */

.topnav {
    overflow: hidden;
    display: flex;
    max-width: 1400px;
    width: 1400px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    align-items: center;
}

.immersejobs {
    flex: 1;
    font-family: 'Roboto Mono', monospace; 
    font-size: 18px;
    color: black;   
    margin: 0;
    text-decoration: none;
}

.blog {
    margin-right: 25px;
    text-decoration: none;
}

.blog:hover {
    color: black;
}

.hire-hackers-btn {
    text-align: center;
    text-decoration: none;
    padding: 12px 15px; 
    border: 2px solid black;
    border-radius: 4px;
    color: white;
    background-color: black;
    font-weight: bold;
}

.hire-hackers-btn:hover {
    background-color: white;
    color: black;
}

.cover {
    padding: 5px;
    margin-top: 35px;
    margin-bottom: 35px;
}

.work-for-the-future {
    color: black;
    line-height: 0;
    font-size: 3em;
}

.the-place {
    font-size: 20px;
    font-weight: normal;
    color: grey;
}

.filters {
    height: auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    padding-bottom: 10px;
    margin-bottom: 20px;
    border-bottom: 3px solid #F8F8F8;
}

.filters a {
    cursor: pointer;
    padding: 10px;
    letter-spacing: 0.5px;
}

.filters a:hover {
    color: black;
}

.card-container {
    cursor: pointer;
    max-width: 660px;
    width: 90%;
    height: 74px;
    border: 1px solid #EAE8E8;
    border-radius: 8px;
    background: white;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    vertical-align: middle;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.card-logo {
    width: 45px;
    height: 45px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    padding: 1px;
    border-radius: 3px;
    margin-left: 10px;
    align-items: center;
}

.card-info {
    font-family: 'Roboto', sans-serif;  
    margin-left: 10px;
    margin-right: 10px;
    width: 250px;;
    height: auto;
}

.location p {
    color: #C0C0C0;
}

.card-details-container {
    display: none;
    box-sizing: border-box;
    background-color: white;
    max-width: 660px;
    width: 90%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid #EAE8E8;
    border-radius: 8px;
    padding: 30px;
    z-index: 1;
    margin-bottom: 10px;
}

.channels li {
    list-style: none;   
    display: inline-block;
    margin-right: 10px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 35px;
    height: 35px;
}

.channels .vrar-logo {
    background-image: url("img/vrar.png");
}

.channels .reddit-logo {
    background-image: url("img/reddit.png");
}

.channels .unity-logo {
    background-image: url("img/unity.png");
}

/* Id's */

#afternow {
    background-image: url("img/afternow.png");
}

#against-gravity {
    background-image: url("img/againstgravity.png");
}


#altspace {
    background-image: url("img/altspace.png");
}

#blippar {
    background-image: url("img/blippar.png");
}

#google {
    background-image: url("img/google.png");
}

#high {
    background-image: url("img/high.png");
}

#improbable {
    background-image: url("img/improbable.png");
}

#leap-motion {
    background-image: url("img/leapmotion.png"); 
}

#loomai {
    background-image: url("img/loomai.png");    
}

#lucid {
    background-image: url("img/lucid.png");
}

#magic-leap {
    background-image: url("img/magic-leap.png");
}

#meta {
    background-image: url("img/meta.png");
}

#microsoft {
    background-image: url("img/microsoft.png");  
}

#niantic {
    background-image: url("img/niantic.png");  
}

#oculus {
    background-image: url("img/oculus.png");
}

#ptc {
    background-image: url("img/ptc.png");
}

#sketchfab {
    background-image: url("img/sketchfab.png");
}

#snap {
    background-image: url("img/snap.png");
}

#unity {
    background-image: url("img/unity.png");
}

#waveoptics {
    background-image: url("img/waveoptics.png");
}

#zappar {
    background-image: url("img/zappar.png");
}

/* Responsive */

@media screen and (max-width: 2560px) {
    .topnav {
        width: 85%;
    }
}

@media screen and (max-width: 595px) {
    .location {
        display: none;
    }
}

@media screen and (max-width: 440px) {
    .work-for-the-future {
        font-size: 2.5em;
    }
}

@media screen and (max-width: 375px) {
    .blog {
        display: none;
    }

    .work-for-the-future {
        font-size: 2em;
    }
}

@media screen and (max-width: 360px) {
    .card-logo {
        display: none;
    }
}

