@font-face {
    font-family: "fontt";
    src: url("../fonts/BNKGOTHL.woff2") format("woff2");
  }

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

a,a:hover{
    text-decoration: none;
}

html{
    width:100%;
    height:100%;
}

body{
    background: #000 url("../images/background.jpg") no-repeat;
    background-size: contain;
    background-position: center 50px;
    width:100%;
    height:100%;
    text-align: center;
    font-family: "fontt";
}


.header{
    background: rgb(0,0,0,.3);
    height: 180px;
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding-bottom:30px;
}

.header a{
    display: block;
}

.header a img{
    width: 250px;
    height: 100%;
    max-height: 100px;
}

.player{
    position: fixed;
    bottom:250px;
    left:50%;
    transform: translateX(-50%);
    max-width:350px;
    height:50px;
}

.player span{
    font-size:25px;
    margin-bottom:20px;
    color:white;
    display:block;
}


.social{
    width: 100%;
    max-width:350px;
    height:50px;

    position: fixed;
    bottom:125px;
    left:50%;
    transform: translateX(-50%);

    display:flex;
    justify-content: space-around;
    align-items: center;
}

.social a{
    width:50px;
    height:50px;
    display: block;
    background-color:rgba(255,255,255,.8);
    border-radius: 100%;
    display:flex;
    justify-content: center;
    align-items: center;
    font-size:30px;
}

.lineText{
    width:100%;
    height:3rem;
    position: absolute;
    bottom:60px;
    left:0;
}

.lineText::after{
    content: '';
    display: block;
    height:2px;
    width:100%;
    background-color:white;
    position: absolute;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
}

.lineText span{
    text-align: center;
    width:auto;
    padding:0 10px;
    background-color: white;
    position: absolute;
    left:50%;
    top:50%;
    transform: translate(-50%,-50%);
    z-index: 2;
    font-size:30px;
    color:black;
    border-radius:5px
}

.social a:hover{
    background-color:rgba(255,255,255,1);
    transition: all 500ms ease-in;

}

.phone{
    position: absolute;
    bottom:5px; 
    left:50%;
    transform: translateX(-50%);
    width: 80%;
}

.phone span,.phone a{
    color:white;
    display: block;
    font-size:18px;
}

.phone a{
    font-weight: bold;
    margin-top:5px
}

@media only screen and (max-width: 768px) {
    .player{
        bottom:45%;
    }
    .social{
        bottom:25%;
    }

    .phone{
        bottom:3%;
    }
    .lineText{
        bottom:15%;
    }

    .lineText span{
        width:70%
    }
  }

.fb{
    color:#3b5998;
}
.tw{
    color:#00acee ;
}

.in{
    color:#3f729b  ;
}