/* ------------------------------ */
/* Custom Font */
/* ------------------------------ */

@font-face {
    font-family: "MyFont";
    src: url("fonts/PERRYGOT.woff2") format("woff2");
    font-weight: normal;
    font-style: normal;
}

/* ------------------------------ */
/* Reset */
/* ------------------------------ */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

/* ------------------------------ */
/* Background */
/* ------------------------------ */

body{
    width:100vw;
    height:100vh;
    overflow:hidden;

    background-image:url("images/bg.jpg");
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    font-family:"MyFont", Arial, sans-serif;
}

/* ------------------------------ */
/* Image Button */
/* ------------------------------ */

.image-button{
    position:absolute;
    top:30px;
    left:30px;

    display:block;
}

.image-button img{
    width:180px;
    height:auto;

    cursor:pointer;

    transition:
        transform .20s ease,
        filter .20s ease;
}

.image-button img {
    opacity: 0.1;
}

.image-button:hover img{
    transform:scale(1.05);
    filter:brightness(1.15);
}

.image-button:active img{
    transform:scale(.95);
}

/* ------------------------------ */
/* Title */
/* ------------------------------ */

.title{
    position:absolute;

    top:50px;
    left:250px;

    color:white;

    font-size:72px;
    font-weight:normal;

    text-shadow:
        0 0 8px rgba(0,0,0,.9),
        0 0 18px rgba(0,0,0,.7),
        0 0 28px rgba(0,0,0,.5);
}

/* ------------------------------ */
/* Subtitle */
/* ------------------------------ */

.subtitle{
    position:absolute;

    top:140px;
    left:250px;

    color:white;

    font-size:28px;

    text-shadow:
        0 0 6px rgba(0,0,0,.8);
}