* {
    box-sizing: border-box;
    font-family: Helvetica Neue, Open Sans, Arial;
    background: -;
}

section.home {
    display: flex;
    flex-direction: column;
    min-width: 320px;
}

section.home div.intro {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    padding: 30px;
    height: 100%;
}

section.home div.intro div.links a {
    text-decoration: none;
    font-weight: bold;
    color: black;
}

section.home div.intro div.blurb {
    margin-top: 90px;
}

section.home div.intro div.blurb p {
    font-size: 16px;
    line-height: 1.4;
}

section.home div.grid {
    display: grid;
    grid-gap: 3px;
    padding: 0 0 3px 0;
    grid-template-rows: 1fr;
    grid-template-columns: 1fr;
}

section.home div.grid div.tile {
    height: 360px;
    background-color: rgba(0, 0, 0, 0.4);
    overflow: hidden;
    position: relative;
}

section.home div.grid div.bg-img {
    height: 100%;
    width: 100%;
    background-position: center;
    background-size: cover;
    transition: all 0.33s ease;
}

section.home div.grid div.bg-img a {
    display: none;
    font-size: 16px;
    color: #ffffff;
    text-align: center;
    margin: auto;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    height: 10%;
    width: 100%;
    cursor: pointer;
    text-decoration: none;
    max-width: 240px;
    line-height: 1.4;
}

section.home div.grid div.bg-img::before {
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0);
    transition: all 0.33s ease;
}

section.home div.grid .tile-hover:hover .bg-img,
section.home div.grid .tile-hover:focus .bg-img {
    transform: scale(1.2);
}

section.home div.grid .tile-hover:hover .bg-img:before,
section.home div.grid .tile-holver:focus .bg-img:before {
    display: block;
    background-color: rgba(0, 0, 0, 0.5);
}

section.home div.grid .tile-hover:hover a,
section.home div.grid .tile-hover:focus a {
    display: block;
}

section.home div.grid div.tile-text {
    background-color: white;
    display: flex;
    height: 100%;
    width: 100%;
    align-items: center;
    justify-content: center;
}

section.home div.grid div.tile-text p {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
}

section.home div.grid div.bg-img-1 {
    background-image: url(imgs/italomenu.png);
}

section.home div.grid div.bg-img-2 {
    background-image: url(imgs/robocop.png);
}

section.home div.grid div.bg-img-3 {
    background-image: url(imgs/sabaudian.png);
}

section.home div.grid div.bg-img-4 {
    background-image: url(imgs/ZD.png);
}

section.home div.grid div.bg-img-6 {
    background-image: url(imgs/alteredbrains.png);
}

section.home div.grid div.bg-img-7 {
    background-image: url(imgs/divina.png);
}

section.home div.grid div.bg-img-8 {
    background-image: url(imgs/mad.png);
}

section.home div.grid div.bg-img-9 {
    background-image: url(imgs/tef.png);
}

section.home div.grid div.bg-img-10 {
    background-image: url(imgs/skandal.png);
}

section.home div.grid div.bg-img-11 {
    background-image: url(imgs/blackaces.png);
}

section.home div.grid div.bg-img-12 {
    background-image: url(imgs/lust2.png);
}

section.home div.grid div.bg-img-13 {
    background-image: url(imgs/trinity.png);
}

section.home div.grid div.bg-img-14 {
    background-image: url(ht);
    background-color: #e6b4e3;
}

@media screen and (min-width: 700px) {
    section.home div.intro {
        position: fixed;
        padding: 60px;
        width: 50%;
        text-transform: none;
        text-align: left;
        font-family: 'Comfortaa', cursive;
    }

    section.home div.grid {
        width: 50%;
        margin-left: 50%;
    }
}

@media screen and (min-width: 1200px) {
    section.home div.intro {
        width: 33.3333%;
    }

    section.home div.grid {
        width: 66.6666%;
        margin-left: 33.3333%;
        grid-template-rows: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (min-width: 1440px) {
    section.home div.grid {
        grid-template-rows: 1fr 1fr 1fr;
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media screen and (min-width: 1920px) {
    section.home div.intro {
        padding: 90px;
    }

    section.home div.grid div.tile {
        height: 440px;
    }
}

section#footer {
    -webkit-font-smoothing: antialiased;
    background-color: black;
    color: white;
    padding: 60px;
}

section#footer div.container {
    max-width: 1440px;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
}

section#footer h4 {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
}

section#footer div.blurb {
    margin-bottom: 60px;
}

section#footer div.blurb h4 {
    color: #ff8fb8;
}

section#footer div.blurb h1 {
    margin: 15px 0 20px;
}

section#footer div.blurb p {
    text-transform: uppercase;
    font-size: 12px;
    margin: 0;
}

section#footer div.explore {
    display: flex;
}

section#footer div.explore h4 {
    color: #4a90e2;
    margin-bottom: 20px;
}

section#footer div.explore ul {
    margin: 0;
    padding: 0;
}

section#footer div.explore ul li {
    list-style: none;
    margin-top: 10px;
}

section#footer div.explore ul li a {
    opacity: 0.75;
    text-transform: uppercase;
    color: white;
    text-decoration: none;
    font-size: 12px;
}

section#footer div.explore ul li a:hover {
    opacity: 1;
}

section#footer div.explore div.nav {
    margin-right: 80px;
}

section#footer div.explore div.social ul li {
    margin: 0 0 22px;
    font-size: 16px;
}

section#footer div.explore div.social ul li a {
    font-size: 16px;
}

@media screen and (min-width: 700px) {
    section#footer {
        padding: 60px;
    }

    section#footer div.container {
        flex-direction: row;
        justify-content: space-between;
    }

    section#footer div.blurb {
        margin: 0 60px 0 0;
    }
}

@media screen and (min-width: 1200px) {
    section#footer {
        padding: 90px 120px;
    }
}
a {
  color: inherit;
  text-decoration: none;
}

a {
  background:
    linear-gradient(
      to right,
      rgba(100, 200, 200, 1),
      rgba(100, 200, 200, 1)
    ),
    linear-gradient(
      to right,
      rgba(255, 0, 0, 1),
      rgba(255, 0, 180, 1),
      rgba(0, 100, 200, 1)
  );
  background-size: 100% 3px, 0 3px;
  background-position: 100% 100%, 0 100%;
  background-repeat: no-repeat;
  transition: background-size 400ms;
}

a:hover {
  background-size: 0 3px, 100% 3px;
}
