@font-face {
	font-family: 'TerminaTest-Light';
	src: url('./fontfamily/TerminaTest-Light.otf') format('opentype');
}

@font-face {
	font-family: 'Hijrnotes';
	src: url('./fontfamily/HijrnotesPERSONALUSEONLY.woff2') format('woff2'),
		url('./fontfamily/HijrnotesPERSONALUSEONLY.woff') format('woff');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}



body{
    margin: 0;
}

.coming-soon-section{
    background-image: url(genres-pattern-bg.jpg);
	opacity: 1;
	background-size: cover;
	background-position: center;
    width: 100vw;
    height: 100vh;
}

.text-section{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    background: #071822;
    padding: 80px 90px;
}
.text-section img{
   width: 350px;
}

@keyframes example {
    0%   {opacity:0}
    100%  {opacity:1}
  }
  
h1{
    color: white;
    font-family: 'TerminaTest-Light';
    text-align: center;
    font-size: 40px;
    animation-name: example;
    animation-duration: 2s;
}

ul{
    padding-left: 0;
    display: flex;
    justify-content: center;
    margin-bottom: 0;
}

li{
    list-style: none;
}

li a{
    width: 30px;
    height: 30px;
    margin-left: 8px;
    margin-right: 8px;
    border-radius: 100%;
    background: rgb(137 125 113);
    color: rgb(61 61 61);
    text-decoration: none;
    display: flex !important;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease-in-out;
}
li a:hover {
    color: rgb(61 61 61);
    background-color: #b9afa7;
}

@media (max-width:767px) {
    h1{
        font-size: 30px;
    }
    .text-section img{
        width: 200px;
     }
     .text-section{
        padding: 80px 40px;
     }
}