@import url('https://fonts.googleapis.com/css2?family=Shadows+Into+Light&display=swap');

/* LOCAL FONTS */

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

@font-face {
    font-family:'LetterGothicStd';
    src:url('LetterGothicStd.otf');
}

/* ===========================
        GLOBAL
=========================== */

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

body {
    background:#fbfbfb url('bg.png');
    font-family:'LetterGothicStd', monospace;
    font-size:16px;
    color:#41313c;
}

a {
    color:#9e5566;
    text-decoration:none;
    transition:.25s;
}

a:hover {
    color:#c46666;
    text-decoration:underline dashed;
}

/* ===========================
        WRAPPER
=========================== */

#wrapper {
    width:1084px;
    margin:0 auto;
    position:relative;
}

/* ===========================
        HEADER
=========================== */

#header {
    position:relative;
    width:1084px;
    height:394px;
}

/* BACKGROUND */

#headbg {
    position:absolute;
    inset:0;
    background:url('headbg.png') center center no-repeat;
    z-index:1;
}

/* RANDOM IMAGES */

#randoms {
    position:absolute;
    inset:0;
    text-align:center;
    z-index:2;
    padding-top:35px;
}

#randoms img {
    width:300px;
    height:300px;
    border-radius:150px;
    margin:0 15px;
    object-fit:cover;
}

/* ===========================
        TITLE + NAV
=========================== */

#overlay {
    position:absolute;
    top:280px;
    left:50%;
    transform:translateX(-50%);
    z-index:10;
    text-align:center;
    width:100%;
}

/* ===========================
        TITLE
=========================== */

#title {
    line-height: 1;
}

#title span {
    display:inline-block;
    font-family:'Plastique';
    font-size:55px;
    color:#fff;
    background:#000;
    letter-spacing:10px;
    line-height:1;
    padding: 0 20px 38px 20px;
}

.record {
    transform:rotate(-7.7deg);
}

.shops {
    transform:rotate(1.7deg);
    margin-left:-30px;
}

/* ===========================
        NAV
=========================== */

nav {

    width:700px;
    margin:18px auto 0 auto;
    display:flex;
    justify-content:space-evenly;
    align-items:center;
    flex-wrap:wrap;
}

nav a {

    font-family:"Shadows Into Light", sans-serif;
    font-weight:400;
    font-size:35px;
    color:#000;
}

nav a:hover {
    color:#c46666;
    text-decoration: none !important;
}

/* ===========================
        CONTENT
=========================== */

#content {
    width:700px;
    position:relative;
    z-index:1;
    margin:-70px auto 0 auto;
    background:#fff;
    padding:150px 30px 0 30px;
    box-shadow:0 0 20px #e0e0e0;
}

p {
    margin:20px 0;
}

h1,h2 {

    display:table;
    margin:20px auto;
    font-family:'Plastique';
    color:#fff;
    background:#000;
    letter-spacing:10px;
    transform-origin:center center;
}

h1 {
    font-size:20px;
    line-height:1;
    padding:0 8px 20px 20px;
}

h2 {
    font-size:14px;
    line-height:1;
    padding:0 8px 14px 20px;
}

h3 {
    font-size:12px;
    line-height:1;
    padding:0 8px 8px 20px;
    display:table;
    margin:20px auto;
    font-family:'Plastique';
    color:#000;
    background:#fff;
    letter-spacing:10px;
}

b, strong {
    color: #89aba9;
}

i, em {
    color: #c46666;
}



/* ===========================
        FOOTER
=========================== */

footer {
    padding:45px 0 20px 0;
    text-align:center;
    font-size:12px;
    color:#89aba9;
}

footer,
footer a {
    color:#dfb29c;
}

footer a:hover {
    color:#dfb29c;
    text-decoration:underline dashed;
}