@import url('https://fonts.googleapis.com/css?family=Abel|Source+Code+Pro|Source+Sans+Pro:300');

@font-face {
    font-family: TrashHand;
    src: url(trashhand.ttf);
}

@font-face {
    font-family: ComicSpans;
    src: url(comic_spans.otf);
}

body {
    margin: 0;
    overflow: visible;
    background-color: #232323;
    font-family: 'Abel', sans-serif;
    line-height: 25px;
    font-weight: 300;
    color: #fff;
}

main {
    margin: auto auto;
    padding-left: 0px;
    max-width: 50%;
    padding-top: 100px;
}

.logo {
    width: 200px;
}

.mysteryhack {
    font-family: ComicSpans;
    text-transform: uppercase;
}

h1 {
    font-size: 2.6em;
    line-height: 44px;
    margin-top: 22px;
    font-family: 'Abel', sans-serif;
    color: #fff;
    font-weight: 600;
}

h2 {
    margin-bottom: 20px;
    color: #fff;
    font-size: 1.6em;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    letter-spacing: 6px;
}

h3 {
    font-size: 1.4em;
}

h4 {
    font-size: 1.2em;
}

.subtitle {
    margin-top: -19px;
    padding-top: 0px;
    font-family: 'Abel', sans-serif;
    color: #fff;
    font-size: 25px;
    line-height: 50px;
    font-weight: 300;
}

.p3 {
    margin-bottom: 20px;
    font-family: 'Abel', sans-serif;
    font-style: normal;
    font-weight: 300;
    color: #fff;
    font-size: 18px;
    line-height: 27px;
}

/*  LINKS  */
a {
    text-decoration: none;
    color: #0aac42;
}

a:hover {
    text-decoration: underline dotted;
}

/*  EVENTS  */
.events h3 {
    margin-top: 30px;
}

/* TEAM */
.team-members {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.projects {
    padding: 5px 0 50px 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.projects li {
    position: relative;
    width: 300px;
    margin: 35px 10px 0 0;
    clear: none;
    height: 60px;
    background-size: 60px;
    background-position: 0px center;
    background-repeat: no-repeat;
}

.projects li img {
    width: 80px;
}

.projects li a {
    position: absolute;
    left: -3px;
    top: 0px;
    right: -3px;
    bottom: 0px;
    display: block;
    width: 280px;
    height: 60px;
}

.projects li .content {
    margin: 0 0 0 80px;
}

.projects li .title {
    font-weight: bold;
    display: block;
    color: #0aac42;
}

.projects li .description {
    display: block;
}

.hackox {
    background: url('../images/hackox.png');
}

.packetmonitor32 {
    background: url('../images/packetmonitor32.png');
}

.deauther {
    background: url('../images/deauther.png');
    background-size: auto 60px !important;
    background-position: 8px center !important;
}

.satellite {
    background: url('../images/satellite.png');
}

.penguicorn {
    background: url('../images/penguicorn.png');
}

.wifiduck {
    background: url('../images/wifiducky.png');
}

.wifilights {
    background: url('../images/wifilights.png');
    background-size: auto 60px !important;
    background-position: 8px center !important;
}

.bill-badge {
    background: url('../images/bill.png');
    background-size: auto 60px !important;
    background-position: 8px center !important;
}

.malware {
    background: url('../images/malware.svg');
    background-size: auto 60px !important;
    background-position: 8px center !important;
}

.blinkitten {
    background: url('../images/blinkitten.png');
    background-size: auto 60px !important;
    background-position: 8px center !important;
}

.fox-hunt {
    background: url('../images/fox.svg');
    background-size: auto 60px !important;
}

section {
    margin-bottom: 50px;
}

@media (min-width: 320px) and (max-width: 480px) {
    body {
        padding-left: 0;
    }

    main {
        margin: auto auto !important;
        max-width: 85%;
        padding-top: 20px;
    }

    .top {
        text-align: center;
        margin-top: 25px;
    }

    .projects {
        padding: 5px 0 50px 0;
        list-style: none;
        display: grid;
        grid-template-columns: repeat(1, 1fr);
    }

    .p1 {
        width: 98%;
    }

    .p2 {
        width: 98%;
    }

    .p3 {
        width: 98%;
    }
}

.calendar {
    border-collapse: collapse;
    width: 100%;
    margin-top: 15px;
    margin-bottom: 15px;
}

.calendar td, .calendar th {
    border: none;
    padding: 8px;
}

.calendar tr:nth-child(even){
    background-color: #2b2a2a;
}

.calendar th {
    text-align: left;
    background-color: #2b2a2a;
    color: white;
}

/* DIVIDER */
hr {
    border-top: 1px dotted #fff;
    border-bottom: none;
    margin-top: 30px;
    margin-bottom: 30px;
}

section hr {
    border-top: 1px dotted #fff;
    border-bottom: none;
    margin: 0;
    width: 25%;
}

.rotate-left {
    transform: rotate(-2deg);
}

.rotate-right {
    transform: rotate(2deg);
}

.footer {
    text-align: center;
}