body {
    font-family: 'Inter', sans-serif;
    background-color: white;
    background-image:
        linear-gradient(to right, #dddddd 1px, transparent 1px),
        linear-gradient(to bottom, #dddddd 1px, transparent 1px);
    background-size: 28px 28px;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    overscroll-behavior-y: none;
}

h1 {
    color: #ff0000;
    font-weight: bold;
}

.page-title-text {
    font-size: calc(24px + 6.5vw);
    font-weight: bold;
}

.page-title-header {
    text-align: center;
    margin: 0px;
    box-sizing: border-box;
    padding: 10px;
    padding-bottom: calc(15px + 4vw);
    padding-top: calc(15px + 4vw);
    width: 100%;
    box-sizing: border-box;
    background-color: rgba(0, 0, 0, 0.08)
}

h2 {
    color: #ff0000;
    font-weight: bold;
}

h3 {
    color: #ff0000;
    font-weight: bold;
}

p {
    color: #000000;
}

.section {
    padding: 40px 20px;
}

.main {
    background-color: #3c3c3c36;
    display: flex;
    /*flex-wrap: wrap;*/
    align-items: center;
    justify-content: center;
    padding: 20px 5%;
    margin-left: 10%;
    margin-right: 10%;
    flex: 1;
    /*align-items: stretch;*/
    border-radius: 50px;
}

.title {
    color: #00e1ff;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.textbox {
    background-color: #ffffff;
    text-align: center;
    flex: 1;
    padding: 5%;
    margin: 10px;
    border-radius: 50px;
}

.imagebox {
    flex: 1;
    align-items: center;
}

.dev-banner {
    width: 100%;
    text-align: center;
    background: #fff3cd;
    display: block;
    color: #856404;
    padding: 8px 0;
    font-size: 14px;
    border-bottom: 1px solid #f0e1a0;
}

.navbar {
    vertical-align: middle;
    margin: 0px;
    box-sizing: border-box;
    padding: 5px 40px;
    width: 100%;
    /*100%-2*lrpadding*/
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    z-index: 9999;
    border-bottom: 1px solid #000000;
    box-shadow: 0 3px 9px #16365d;
    color: #000000;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.nav-filler {
    padding: 0;
    margin: 0;
    height: 80px;
}

.logo img {
    height: 60px;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: stretch;
    padding: 0;
}

.nav-links li {
    display: flex;
    text-align: center;
    margin: 0;
    margin-left: 5px;
    align-items: center;
    justify-content: center;
}

.nav-links a {
    text-decoration: none;
    background-color: transparent;
    color: #ff0000;
    font-size: 15px;
    font-weight: 500;
    border-radius: 6px;
    display: block;
    padding: 8px 12px;
    text-align: center;
    transition: color 0.3s, background-color 0.3s;
}

.nav-links a:hover {
    background-color: #eeeeee;
    color: #00e1ff;
}

.nav-links a.signup {
    font-weight: bold;
    font-size: medium;
    color: #000000;
    transition: background-color 0.3s;
}

.nav-links a.signup:hover {
    background-color: rgb(100, 100, 100);
    color: #ffffff;
}

.placeholder-box {
    width: 100%;
    height: 150px;
    background-color: #e0e0e0;
    margin-top: 10px;
}

.responsive-img {
    max-width: 100%;
    height: auto;
    border-radius: 50px;
}

.main-text {
    margin: auto;
    box-sizing: border-box;
    padding: 20px;
    max-width: 800px;
}

@media (max-width: 760px) {
    .logo {
        display: none;
    }

    .navbar {
        justify-content: center;
    }

    .main-text {
        width: 100vw;
    }
}

@media (max-width: 530px) {
    .navbar {
        justify-content: space-between;
        height: 120px;
        padding-left: 10px;
        padding-right: 10px;
        width: 100%;
    }

    .nav-filler {
        padding: 0;
        margin: 0;
        height: 120px;
    }

    .nav-links {
        flex-direction: column;
    }

    .nav-links a {
        text-align: center;
        text-decoration: none;
        padding: 0px 15px;
        border-radius: 5px;
    }

    .logo img {
        height: 100px;
    }

    .logo {
        display: block;
    }
}

.fixed {
    position: fixed;
}