@font-face {
    font-family: RabbitSlab;
    src: url("../fonts/RabbitSlab-1v0-Black.otf");
}

@font-face {
    font-family: PlayboyVisuelt;
    src: url("../fonts/PlayboyVisuelt-Regular.otf");
    font-weight: normal;
}

@font-face {
    font-family: PlayboyVisuelt;
    src: url("../fonts/PlayboyVisuelt-Bold.otf");
    font-weight: bold;
}

html,
body {
    margin: 0;
    padding: 0;
    background-color: #fff;
    color: #000;
    font-family: PlayboyVisuelt, arial, sans-serif;
}

main {
	height: calc(100vh - 55px);
}

header nav {
    height: 55px;
    padding: 0 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header nav .logo {
    padding: 16px 0;
}

header nav .logo span {
    font-family: RabbitSlab, arial, sans-serif;
    font-size: 26px;
    text-transform: uppercase;
    position: relative;
    left: 6px;
    bottom: 3px;
}

header nav .cta {
    font-size: 12px;
    text-align: right;
}

header nav .cta div {
    margin: 4px 0;
}

header nav .cta a {
    color: #000;
    text-decoration: none;
    font-weight: bold;
}

main .splash {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 0.6)), url("../images/knocker.jpg");
    background-color: #000;
    color: #fff;
    background-position: cover cover;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

main .splash .offset {
    height: 50%;
}

main .splash .text {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    text-shadow: 1px 1px #000;
    height: 50%;
}

main .splash h1 {
    font-weight: bold;
    font-size: 48px;
}

main .splash h1 span {
    position: relative;
    top: 40px;
}

main .splash .splash-footer {
    font-size: 12px;
}

main .splash .splash-footer p {
    margin: 8px;
}

@media (max-width: 1440px) {
    main .splash {
        background-position: center;
        background-size: auto;
    }

    main .splash h1 {
        font-size: 39px;
    }
    
    main .splash .splash-footer {
        font-size: 10px;
    }
}

@media (max-width: 768px) {
	main {
		height: calc(100vh - 110px);
	}
}

@media (max-width: 650px) {
    header nav {
        height: 110px;
        flex-direction: column;
    }

    header nav .logo {
       position: relative;
       right: 6px;
       padding: 8px 0 0 0;
    }

    header nav .cta {
        text-align: center;
    }

    main .splash {
        background-size: cover;
    }

    main .splash .text {
        height: 225px;
    }

    main .splash h1 {
        font-size: 32px;
        line-height: 12px;
    }

    main .splash h1 span {
        position: relative;
        top: 32px;
    }

    main .splash .splash-footer {
        position: relative;
        top: 50px;
    }
}
