@font-face {
    font-family: 'Grotesque Bourgeoisie';
    src: url('GrotesqueBourgeoisie.woff2') format('woff2'),
        url('GrotesqueBourgeoisie.woff') format('woff'),
        url('GrotesqueBourgeoisie.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Jellee';
    src: url('Jellee-Bold.woff2') format('woff2'),
         url('Jellee-Bold.woff') format('woff'),
         url('Jellee-Bold.ttf') format('truetype');
    font-weight: normal;
}

@font-face {
    font-family: 'SalmaProMed';
    src: url('SalmaPro-Medium.woff2') format('woff2'),
         url('SalmaPro-Medium.woff') format('woff');
    font-weight: normal;
}

@font-face {
    font-family: 'NorthwestBold';
    src: url('NORTHWEST-Bold.woff2') format('woff2'),
         url('NORTHWEST-Bold.woff') format('woff'),
         url('NORTHWEST-Bold.ttf') format('truetype');
    font-weight: normal;
}

@font-face {
    font-family: 'Sysfont';
    src: url('Sysfont.woff2') format('woff2'),
         url('Sysfont.woff') format('woff');
    font-weight: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; */
    font-family: 'SalmaProMed';
    font-weight: normal;
    font-style: normal;
    color: #000;
    /* color: #fff; */
}

a {
    text-decoration: none;
    color: inherit;
}

html, body {
  height: 100%;
  margin: 0;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background: linear-gradient(45deg, #ffffee, #eeeedd);
    /* color: #333;
    min-height: 100vh; */
}

p {   
    text-align: justify;
}

header {
    background-color: #273238;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */
    font-family: 'Jellee';
    font-weight: normal;
    font-style: normal;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    /* font-family: 'NorthwestBold';
    font-weight: normal;
    font-style: normal;

    font-size: 24px;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3); */
    height: 24px;
    padding-top: 4px;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

nav ul li a:hover {
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.7);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.plugin-image {
    margin: 20px 0;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.4));
    max-width: 100%;
    transition: transform 0.3s ease;
}

.plugin-image-smaller {
    margin: 20px 0;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.4));
    max-width: 80%;
    transition: transform 0.3s ease;
}

.plugin-image:hover {
    transform: translateY(-5px);
}

.plugin-title {
    font-size: 72px;
    font-weight: bold;
    margin: 30px 0;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 2px;
    /* text-transform: uppercase; */
    font-family: 'Grotesque Bourgeoisie';
    font-weight: normal;
    font-style: normal;
}

.description {
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: .2rem;
    margin: 20px 0;
    max-width: 800px;
    color: #fff;
    line-height: 1.6;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.description h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #cc5f00;
    font-weight: 700;
}

.description p {
    margin-bottom: 15px;
    font-size: 18px;
}

.highlight {
    color: #cc5f00;
    font-weight: bold;
}

.cta-button {
    display: inline-block;
    background-color: #fff;
    color: #f7931e;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 30px;
    text-decoration: none;
    margin-top: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

footer {
    text-align: center;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.1);
    /* background-color: #273238; */
    color: #fff;
    margin-top: 50px;
}

.shrinking-text span {
    display: inline-block;
    font-size: 1rem;
}

/* Font size reduction for each word */
.shrinking-text span:nth-child(1) { font-size: 1rem; }
.shrinking-text span:nth-child(2) { font-size: 0.9rem; }
.shrinking-text span:nth-child(3) { font-size: 0.8rem; }
.shrinking-text span:nth-child(4) { font-size: 0.7rem; }
.shrinking-text span:nth-child(5) { font-size: 0.6rem; }
.shrinking-text span:nth-child(6) { font-size: 0.5rem; }
.shrinking-text span:nth-child(7) { font-size: 0.4rem; }
.shrinking-text span:nth-child(8) { font-size: 0.3rem; }
.shrinking-text span:nth-child(9) { font-size: 0.2rem; }
.shrinking-text span:nth-child(10) { font-size: 22px; }
.shrinking-text span:nth-child(11) { font-size: 20px; }
.shrinking-text span:nth-child(12) { font-size: 18px; }
.shrinking-text span:nth-child(13) { font-size: 16px; }
.shrinking-text span:nth-child(14) { font-size: 14px; }
.shrinking-text span:nth-child(15) { font-size: 12px; }
.shrinking-text span:nth-child(16) { font-size: 10px; }
.shrinking-text span:nth-child(17) { font-size: 8px; }
.shrinking-text span:nth-child(18) { font-size: 6px; }
.shrinking-text span:nth-child(19) { font-size: 4px; }
.shrinking-text span:nth-child(20) { font-size: 2px; }

.text-center * {
    text-align: center;
    align-items: center;
}

.licence p {
    font-size: .8rem;
    color: #f3f3f3;
    text-justify: unset;
}

b {
    font-weight: bold;
}

@media screen and (max-width: 768px) {
    .plugin-image-smaller {
        max-width: 100%;
    }

    .plugin-title {
        font-size: 2.8rem
    }

    .cta-button {
        font-size: 0.8rem;
    }
    
}