/* import fonts */
@font-face {
  font-family: LW90;
  src: url("assets/LW90.otf") format("opentype");
}

@font-face {
  font-family: Gunbangs;
  src: url("assets/Gunbangs.otf") format("opentype");
}

@font-face {
  font-family: Anglerhand;
  src: url("assets/Anglerhand.otf") format("opentype");
}

@font-face {
  font-family: Elegantile;
  src: url("assets/Elegantile.otf") format("opentype");
}

/* layout */

.menu {
    margin: 30px auto;
}

.menu div {
    padding: 60px 0;
    float: left;
    width: 50%
}

.menu a {
    padding: 0;
}

.menu h1 {
    margin: auto;
}

/* class declarations */

.LW90 h1 {
    font-family: LW90, Arial, sans-serif;
    font-weight: 100;
    font-size: 100px;
}

.gunbangs h1 {
    font-family: Gunbangs, Arial, sans-serif;
    font-weight: 100;
    font-size: 120px;
}

.anglerhand h1 {
    font-family: Anglerhand, Arial, sans-serif;
    font-weight: 100;
    font-size: 100px;
}

.elegantile h1 {
    font-family: Elegantile, Arial, sans-serif;
    font-weight: 100;
    font-size: 120px;
}

/* general styling */

.menu a:hover {
    background-color: transparent;
}

.menu div:hover h1 {
    transition: .25s;
}

/* 
.menu::after {
    content: "More to come!";
    color: rgba(255, 255, 255, .4);
    font-family: Jost, Arial, sans-serif;
    font-size: 30px;
    display: block; 
    text-align: center;
}
*/

/* hover styling */

.LW90:hover {
    background-color: black;
}

.LW90:hover h1,p {
    color: #C56942;
}


.elegantile:hover {
    background-color: #306FD8;
}

.elegantile:hover h1 {
    color: black;
}


.anglerhand:hover {
    background-color: #DC2334;
}

.anglerhand:hover h1 {
    color: black;
}


.gunbangs:hover {
    background-color: #330066;
}

.gunbangs:hover h1 {
    color: #FFE301;
    text-shadow: 10px 10px black;   
}