


    @font-face {
        font-family: 'Teko';
        font-style: normal;
        font-weight: 600;
        src: local('Teko Regular'), url('fonts/Teko-Regular.woff') format('woff');
        }
        
    
    @font-face {
        font-family: 'Teko';
        font-style: normal;
        font-weight: 500;
        src: local('Teko Light'), url('fonts/Teko-Light.woff') format('woff');
    }
        
    
    @font-face {
        font-family: 'Teko';
        font-style: normal;
        font-weight: 700;
        src: local('Teko Medium'), url('fonts/Teko-Medium.woff') format('woff');
    }
        
    
        @font-face {
        font-family: 'Teko';
        font-style: normal;
        font-weight: 900;
        src: local('Teko SemiBold'), url('fonts/Teko-SemiBold.woff') format('woff');
        }
        
    
        @font-face {
        font-family: 'Teko';
        font-style: normal;
        font-weight: 1000;
        src: local('Teko Bold'), url('fonts/Teko-Bold.woff') format('woff');
        }

        * {
            box-sizing: border-box;
        }
/* Base font size for 4K and larger displays */
body {
    font-size: 24px;
}

/* For screens smaller than 1920px (Full HD) */
@media (max-width: 1920px) {
    body {
        font-size: 22px; /* Slightly smaller for Full HD */
    }
}

/* For screens smaller than 1440px (HD+) */
@media (max-width: 1440px) {
    body {
        font-size: 20px; /* Further reduction for HD+ */
    }
}

/* For screens smaller than 1280px (Tablet landscape, smaller laptops) */
@media (max-width: 1280px) {
    body {
        font-size: 18px; /* Comfortable size for smaller laptops/tablets */
    }
}

/* For screens smaller than 1024px (Tablet portrait, large smartphones) */
@media (max-width: 1024px) {
    body {
        font-size: 16px; /* Standard readable size for tablets/smartphones */
    }
}

/* For screens smaller than 768px (Tablets, small smartphones) */
@media (max-width: 768px) {
    body {
        font-size: 14px; /* Suitable for small tablets/large smartphones */
    }
}

/* For screens smaller than 480px (Smartphones) */
@media (max-width: 480px) {
    body {
        font-size: 12px; /* Minimum readable size for small smartphones */
    }
}

/* Reset and basic styles */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Teko', 'Arial', sans-serif;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

/* Navigation bar styles */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    box-sizing: border-box;
    background-color: transparent;
    transition: background-color 0.3s ease;
    z-index: 2000;
}

.content-frame {
    padding: .75em;
    font-size: 1.5em;
    color: white;background: linear-gradient(to right, #39414f, #292f3a);
    border-radius: 4px;
    align-items: center;
    /*-webkit-clip-path: polygon(2em 0, 0 2em, 0 calc(100% - 2em), 2em 100%, calc(100% - 2em) 100%, 100% calc(100% - 2em), 100% 2em, calc(100% - 2em) 0);
    clip-path: polygon(2em 0, 0 2em, 0 calc(100% - 2em), 2em 100%, calc(100% - 2em) 100%, 100% calc(100% - 2em), 100% 2em, calc(100% - 2em) 0);*/
}

.button {
    background-color: #4bb645;
    text-decoration: none;
    color: white;
    padding: .2em;
    padding-top: 0.32em;
    text-align: center;
    border: 4px solid #ccf5c8
    /*-webkit-clip-path: polygon(11px 0, 0 11px, 0 calc(100% - 11px), 11px 100%, calc(100% - 11px) 100%, 100% calc(100% - 11px), 100% 11px, calc(100% - 11px) 0);
    clip-path: polygon(11px 0, 0 11px, 0 calc(100% - 11px), 11px 100%, calc(100% - 11px) 100%, 100% calc(100% - 11px), 100% 11px, calc(100% - 11px) 0);*/
}

.button-border {
    background-color: #292f3a;
    font-size: 2em;
    box-shadow: 5px 5px 0px #292f3a;
    padding: 3px;
}

.content-frame h1 {
    text-align: center;
    font-size: 5em; 
    margin: 0;
}



.nav-logo {
    width: 64px;
}


nav.scrolled .nav-logo {
    top: 10px;
    left: calc(100vw - 128px);
    width: 96px; /* slightly bigger */
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #007BFF;
}

.burger-menu {
    display: none;
    font-size: 2rem;
    cursor: pointer;
}

/* Style for sections */
section {
    display: flex;
    position: relative;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    padding: 1em;
    width: 100vw;
    box-sizing: border-box;
}



#section2 h1 {
    color: white;
    font-size: 5em;
}

.first-section {
    background-color: #ffffff;
    flex-direction: column;
}

.large-image {
    width: 80%; 
    max-width: 700px;
    height: auto;
    margin-bottom: 2em;
}

.slogan {
    font-size: 2.5rem;
    text-align: center;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 3vw;
    margin: 20px 0;
}

.social-icons a {
    color: #a0a0a0; /* Set default icon color */
    font-size: 64px;
    text-decoration: none;
}

.social-icons a:hover {
    color: #2e2775; /* Change color on hover */
}

.brief {
    color: #b3b3b3;
    font-size: 2em;
}

/* Responsive styles */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.9);
        position: absolute;
        top: 60px;
        right: 0;
        width: 200px;
        text-align: right;
        padding: 10px;
    }

    .nav-links.active {
        display: flex;
    }

    .burger-menu {
        display: block;
    }

   
}

#fishtank {
    position: relative;
}

.fishguy {
    position: absolute;
    right: 5vw;
    bottom: 0;
    max-height: 100%;
    scale: -1 1;
}

.kitty {
    position: absolute;
    right: 0;
    bottom: 4vw;
    transform: translateX(30%);
    width: 30vw;
}


.paralax-background {
    position: absolute;
    z-index: -1000;
    background-image: url(/img/planet.jpg);
    background-size: cover;
    position: absolute;
    background-position: center;
    left: 0;
    right: 0;
    top: -50px;
    bottom: -50px;
}

.game-info {
    position: absolute;
    z-index: 1000;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
}

.we {
    padding: 1vw;
    margin-bottom: .3em;
    color: white;
}

.we.add {
    color: #1e5e1b;
    background-color: #7cdb78;
}

.we.remove {
    background-color: #db7878;
    color:  #981f1f;
}
.we p {
    padding: 0;
    margin: 0;
}

.we ul {
    margin: 0;
}

.we li {
    line-height: 1.2;
}


.slide-content {
    justify-content: center; 
    align-items: center; 
    display: flex; 
    flex-flow: column;
    z-index: 1000;
}

.slide-content.narrow {
    max-width: 800px;
    margin: auto;
} 

.slide-content.fill {
    display: block;
    padding-top: 3em;
    flex-grow: 1;
    min-width: 80%;
    height: 100%
}

/* For screens smaller than 1920px (Full HD) */
@media (max-width: 1400px) {
    .slide-content.narrow  {
        max-width: 600px;
    }
}


.outer-div {
    width: 100%;  /* Can be any size */
    height: 100vh; /* Can be any size */
    background-color: #eff2f5;
    position: relative;
    overflow: hidden;
    z-index: -100;
}



.inner-div {
    position: absolute;
    background-color: white;
    overflow: hidden;
}

.content {
    text-align: left;
    color: #2e383b;
    height: 100%;
    justify-content: center;
    align-items: center;
    font-size: 2.5vw;
    padding: 4vw;
}

/* Ensure the content scales uniformly */
.content p {
    margin: 0;
    width: 90%;
    padding: 0;
}

.content h1 {
    font-size: 2em;
    margin: 0;
    padding: 0;
}

.columns {
    display: flex;
    height: 100%;
}


.column-50 {
    width: 50%;
    display: flex;
    flex-flow: column;
}

.column-50.padded {
    padding: 4vw;
}

.content .image {
    width: 80%;
    margin: .25em
}

.slide-footer {
    height: 40px;
    text-align: right;
    padding-right: .5em;
    padding-left: .5em;
    color: #acacac;
    font-size: 1.25em;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 8px solid #dbdbdb;
}

.slide-footer.white {
    color: white;
}

.promo-video {
    height: auto; 
    width: 100%; 
    margin-bottom: 2em; 
    position: relative;
}


@media(max-width: 800px) {
    .columns {
        flex-flow: column;
        align-items: center;
    }

    .kitty {
        transform: translateX(-20%);
        width: 20vw;
    }

    .promo-video {
        margin-bottom: 4em; 
    }

    .social-icons a {
        font-size: 48px;
    }
    

    .slide-footer {
        border-bottom: 4px solid #dbdbdb;
        padding-right: 1em;
        padding-left: 1em;
    }
    

    .content {
        font-size: 4vw;
        padding: 6vw;
    }

    .column-50 {
        width: 100% !important;
    }

    ul {
        padding-left: 5vw;
    }

    #fishtank {
        height: 100vw;
        overflow: hidden;
    }

    .column-50.padded {
        box-sizing: border-box;
        padding: 6vw;
    }
    
}

/** 
Timeline */
