@import url('https://fonts.googleapis.com/css?family=BioRhyme|Architects+Daughter|Special+Elite');

@font-face { 
    font-family: Jinos; 
    src: url('fonts/Jinos.ttf');
}

body {
    font-family: 'BioRhyme';
}
h1, h2 {
    padding: 0;
    margin: 0;
    text-align: center;
}

h1 {
    font-family: "Special Elite";
    
    letter-spacing: 3px;
    font-size: 4vmax;
    
}

h2 {
    font-family: "Jinos";
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    font-size: 3vmax;
    letter-spacing: 3px;
    
}

.outer {
    position: relative;
    height: 50vh;
    width: 100vw;
}

.inner {
    padding: 0;
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.bottom h2 {
    position: relative;
}

.bottom h2:after {
    content: '- Jino';
    font-size: 2vmax;
    margin-left: 35px;
}

@media only screen and (max-width: 768px) {
  .bottom h2:after {    
    display: none;
  }
}

