﻿@font-face
{
    font-family: "Tusker";
    src: url("https://gsb.africa/geo/Fonts/TuskerGrotesk-4700Bold.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}
@font-face
{
    font-family: "Poppins";
    src: url("https://gsb.africa/geo/Fonts/Poppins-Medium.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}/* General reset */
*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body, html
{
    height: 100%;
    font-family: "Poppins",sans-serif;/* Apply Poppins font to body */
    background-color: #0079ff;
}/* Header styles */
header
{
    background-color: #037;/* Blue background */
    padding: 20px;
    text-align: left;
}
.logo img
{
    height: 50px;/* Adjust the height as needed */
}/* Main section styles */
main
{
    height: 95%;
    background: url("../../bcgamebettingde/image/1920x1080_GSB.webp") no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 20px;
    background-position-y: 0;
}
.content
{
    color: #fff;
    max-width: 1200px;
    padding: 20px;
    border-radius: 5px;
}
.content h1
{
    font-size: 9em;/* Adjust font size for mobile */
    color: #fff;
    line-height: 1.1em;
    font-family: "Tusker";/* Apply Tusker font to h1 */
}
.content h2
{
    font-size: 2.5em;/* Adjust font size for mobile */
    color: #fff;
    font-family: "Tusker";/* Apply Tusker font to h1 */
}
.content h3
{
    font-size: 4em;/* Adjust font size for mobile */
    color: #fff200;
    font-family: "Poppins";/* Apply Tusker font to h1 */
}
.content p
{
    font-size: 2.6em;
    color: #fff;
    margin-top: -20px;
    margin-bottom: 40px;
    font-family: "Poppins";
    line-height: 85px;
}
.image-links img
{
    width: 23%;
}/* Styles for tablets */
@media(min-width: 768px) and (max-width: 1024px)
{
    header
    {
        text-align: center;/* Center header text */
    }
    .logo img
    {
        display: block;/* Ensure the logo image behaves correctly */
        margin: 0 auto;/* Center the logo horizontally */
        height: auto;/* Adjust height for better responsiveness */
        width: 100%;/* Ensure the logo scales well on tablets */
        max-width: 150px;/* Limit the maximum width */
    }
    main
    {
        height: calc(100% - 40px);
        background: url("../../bcgamebettingde/image/800x1200_GSB.webp") no-repeat center center/cover;/* Tablet background image */
        display: flex;
        align-items: center;
        justify-content: center;/* Center content horizontally */
        text-align: center;/* Center text content */
    }
    .content
    {
        margin-top: 55vw;/* Adjust margin for content placement on tablets */
    }
    .content h1
    {
        font-size: 6em;/* Adjust font size for tablets */
    }
    .content h3
    {
        font-size: 3em;
        color: #fff200;
    }
    .content p
    {
        font-size: 2.3em;/* Adjust font size for tablets */
        margin-top: -.5vw;/* Adjust margin for better spacing */
        margin-bottom: 2vw;/* Adjust margin for better spacing */
    }
    .image-links img
    {
        width: 30%;
    }
}/* Responsive styles */
@media(max-width: 767px)
{
    header
    {
        text-align: center;
        padding: 5px;
    }
    .logo img
    {
        height: auto;/* Adjust height for better responsiveness */
        width: 100%;/* Ensure the logo scales well on mobile */
        max-width: 120px;/* Limit the maximum width */
    }
    main
    {
        height: 93%;/* Adjust height based on header height */
        background: url("../../bcgamebettingde/image/800x1200_GSB.webp") no-repeat center center/cover;/* Mobile background image */
        display: flex;
        align-items: center;
        justify-content: center;/* Center content on mobile */
        text-align: center;/* Center text on mobile */
    }
    .content
    {
        margin-top: 67vw;
    }
    .content h1
    {
        font-size: 3.5em;/* Adjust font size for mobile */
        color: #fff;
        font-family: "Tusker";/* Apply Tusker font to h1 */
    }
    .content h2
    {
        font-size: 2em;/* Adjust font size for mobile */
        color: #fff;
        font-family: "Tusker";/* Apply Tusker font to h1 */
    }
    .content h3
    {
        font-size: 1.7em;
        color: #fff200;
        font-family: "Poppins";
    }
    .content p
    {
        font-size: 1.2em;
        margin-top: -1vw;
        margin-bottom: 7vw;
        font-family: "Poppins";
        line-height: 0;
    }
    .image-links img
    {
        width: 60%;
    }
}