@font-face {
    font-family: 'FontA';
    src: url('fonts/FoundersGrotesk-Medium.ttf') format('truetype'),
         url('fonts/FoundersGrotesk-Medium.otf') format('opentype');
}
@font-face {
    font-family: 'FontB';
    src: url('fonts/Newsreader.ttf') format('truetype'),
         url('fonts/Newsreader.otf') format('opentype');
}

body, html {
    margin: 0;
    padding: 0;
    height: 100%;
}
body {
    background-image: url('images/background.jpg');
    background-size: 100%;
    background-repeat:repeat;
    background-position: center center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    /* Animate background position for static effect */
    -webkit-animation: noise 0.2s steps(1, end) infinite;
    animation: noise 0.2s steps(1, end) infinite;
}

.logo {
    position: absolute;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: 66px;
    height: 66px;
    z-index: 2;
}

/* Noise movement keyframes on background */
@-webkit-keyframes noise {
    0% { background-position: 0px -200px; }
    25% { background-position: 200px 100px; }
    50% { background-position: 100px 200px; }
    75% { background-position: -200px -100px; }
    100% { background-position: 0px -200px; }
}
@keyframes noise {
    0% { background-position: 0px -200px; }
    25% { background-position: 200px 100px; }
    50% { background-position: 100px 200px; }
    75% { background-position: -200px -100px; }
    100% { background-position: 0px -200px; }
}
.container {
    text-align: center;
}
.coming {
    font-family: 'FontA', sans-serif;
    font-size: 72px;
    display: inline-block;
    margin-right: 12px; /* optional spacing */
    color:#ffffff
}
.soon {
    position: relative;
    font-family: 'FontB', sans-serif;
    font-size: 72px;
    display: inline-block;
    color:#ffffff
}
.soon::after {
    content: '';
    position: absolute;
    left: -12.5%;
    bottom: 0px; /* adjust as needed */
    width: 120%;
    height: 16px; /* adjust as needed */
    background: url('images/underline.png') no-repeat center center;
    background-size: contain;
}

/* Social media list styling */
.social-list {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    list-style: none;
    margin: 0;
    padding: 0;
    z-index: 2;
}
.social-button {
    display: block;
    width: 40px;
    height: 40px;
}
.social-button img {
    width: 100%;
    height: 100%;
    filter: invert(100%);
    transition: filter 0.3s ease;
}
.social-button:hover img {
    /* swap white to #95FF00 */
    filter: invert(74%) sepia(70%) saturate(708%) hue-rotate(33deg) brightness(107%) contrast(108%);
}