:root {
    --site-colour-01: #4F5861;
    --site-colour-02: #24292e;
    --site-colour-03: #fff;
}
body {
    background-color: #4F5861;
}
body::after {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
    z-index: -1;
    content: url(..img/discordhover.png) url(..img/fivemhover.png);
}
a {
    cursor: pointer;
}
h1 {
    font-size: 26px;
    line-height: 32px;
    color: #fff;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    text-transform: uppercase;

}
h2 {
    font-size: 26px;
    line-height: 32px;
    color: #fff;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;

}
h3 {
    font-size: 20px;
    line-height: 32px;
    color: #fff;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;

}
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;

}
.header-main {
    position: fixed;
    top: 0;
    width: 100%;
    height: 80px;
    background-color: #24292E;
    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: 100%;
    align-self: center;
}

.header-main-nav {
    width: fit-content;
    height: 100%;
}

.header-main-nav ul {
    list-style: none;
    margin-left: 60px;
   
}

.header-main-nav ul li {
   display: inline;
   float: left;
   
}

.header-main-nav ul li a {
    padding: 0 10px;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    line-height: 80px;
    color: #4F5861;

}
.header-main-nav ul li a:hover {
    color: #fff;

}
.header-main-sm {
    width: fit-content;
    height: 100%;
    padding-right: 10px;
    display: flex;
    align-items: center;
    column-gap: 15px;
   
}
.header-discord-join {
    width: 40px;
    height: 40px;
    background-image: url(../img/discord.png);
    background-repeat: no-repeat;
    background-size: cover;

}
.header-discord-join:hover {
    background-image: url(../img/discordhover.png);

}
.header-fivem-join {
    width: 40px;
    height: 40px;
    background-image: url(../img/fivem.png);
    background-repeat: no-repeat;
    background-size: cover;
       
}
.header-fivem-join:hover {
    background-image: url(../img/fivemhover.png);
       
}
.image-background{
    width: 100%;
    height: 600px;
    background-image: url(../img/background.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.footer-main {
    width: 100%;
    height: 10vh;
    background-color: #24292e;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 20px;
}

.footer-main img {
    width: 50px;
}