
:root{
    --primary-color: #07f668;
    --secondary-color: #0F232E;
    
    --background-color: #F5F5F5;
    --text-color: #0F232E;
}

/* Reset or Normalize */
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;
    font-family: sans-serif;
    color: #333;
}

/* Basic typography */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 0.5em;
    font-weight: bold;
}

/* Image responsiveness */
img {
    max-width: 100%;
    height: auto;
}
a {
    text-decoration: none;
    color: inherit;
}


/*** START CSS FOR LANDING PAGE ***/
body, html {
    height: 100%;
    background-color: #f5f5f5;
    font-family: 'Montserrat', sans-serif;
    background:url(images/landing-bg.png) no-repeat center center;
    background-size: cover;
}

.uppercase {
    text-transform: uppercase;
}
.text-center{
    text-align: center;
}
.semi-bold{
    font-weight: 600;
}
.lh-14{
    line-height: 1.4;
}

.wrapper{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
}
.landing-content{
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    max-width: 600px;
    gap: 30px;
}

    .landing-content .logo{
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-flow: column;
        gap: 10px;
    }
    .landing-content .logo .head-loading{
        letter-spacing: 8px;
    }

    .landing-content .logo img{
        max-width: 380px;
        height: auto;
    }

.socials {
    display: flex;
    gap: 50px;
    margin-top: 80px;
}
    .socials a{
        display: inline-flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        border-radius: 50%;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.25);
        background-color: transparent;
    }
    .socials a:hover {
        transform: translateY(-2px);
    }
    .socials a svg{
        width: 40px;
        height: 40px;
        
    }
        .socials a svg rect {
            transition: fill 0.3s ease;
        }

        .socials a:hover svg rect {
            fill: var(--secondary-color);
        }