@font-face {
    font-family: Lobster;
    src: url(../Fonts/Lobster-Regular.ttf);
}

:root {
    --site-color-01: #c13584;
    --site-color-01-hover: #9e2f6e;
}

body {
    background-color: #1e1e1e;
}

body:after {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
    z-index: -1;
    content: url(../img/fb-logo.png) url(../img/ig-logo.png);
}

h1 {
    font-size: 26px;
    line-height: 32px;
    color: #fff;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
}

h2 {
    font-size: 26px;
    line-height: 32px;
    color: #fff;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
}

h3 {
    font-size: 26px;
    line-height: 32px;
    color: #fff;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
}

p {
    font-size: 14px;
    line-height: 18px;
    color: #fff;
    font-family: 'Roboto', sans-serif;
}

a {
    font-size: 14px;
    line-height: 18px;
    color: #fff;
    font-family: 'Roboto', sans-serif;
    cursor: pointer;
}

.header-main {
    position: fixed;
    top: 0;
    width: 100%;
    height: 60px;
    background-color: #fff;
    display: flex;
    justify-content: space-between;
    z-index: 1000;
}

.header-main-logo {
    width: fit-content;
    height: 100%;
    padding-left: 60px;
    display: flex;
}

.header-main-logo img {
    height: 40px;
    align-self: center;
}

.header-main-nav {
    width: fit-content;
    height: 100%;
}

.header-main-nav ul {
    list-style: none;
    margin-left: 30px;
}

.header-main-nav ul li {
    display: inline;
    float: left;
}

.header-main-nav ul li a {
    padding: 0 10px;
    font-family: 'Roboto', sans-serif;
    /*alt -> font-family: Lobster; if you want to use dwonlaoded fonts*/
    line-height: 60px;
    color: #000;
    display: block;
    height: 100%;
}

.header-main-nav ul li a:hover {
    color: #c13584;
}

.header-main-sm {
    width: fit-content;
    height: 100%;
    padding-right: 60px;
    display: flex;
    align-items: center;
    column-gap: 10px;
}

.header-main-sm-fb {
    width: 20px;
    height: 20px;
    background-image: url(../img/fb-logo-bw.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.header-main-sm-fb:hover {
    background-image: url(../img/fb-logo.png);
}

.header-main-sm-ig {
    width: 20px;
    height: 20px;
    background-image: url(../img/ig-logo-bw.png);
    background-repeat: no-repeat;
    background-size: cover;
}


.header-main-sm-ig:hover {
    background-image: url(../img/ig-logo.png);
}