* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}


body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.4;
    background: linear-gradient(135deg, #164bae 0%, #31b7ff 100%);
    min-height: 100vh;
}

.topnav {
    overflow: hidden;
    background-color: transparent;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid black;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.topnav a {
    float: left;
    display: block;
    color: black;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
}

.topnav a.active {
    background-color: #31b7ff;
    color: black;
}

.topnav a:hover {
    background-color: #c9d5ff;
    color: black;
}

.topnav .icon {
    display: none;
    background-color: #ADD8E6;
    color: white;
}

.topnav a.wg {
    float: right;
}

.home {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.home-content {
    max-width: 800px;
}

.home h1 {
    font-size: 6rem;
    font-weight: 700;
    color: #ffeaea;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.home .subtitle {
    font-size: 1.8rem;
    color: #ffeaea;
    margin-bottom: 2rem;
}

.home .description {
    font-size: 1.1rem;
    color: #ffeaea;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;}

.home-button {
    padding: 1rem 2rem;
    background: #96bce4;
    color: #2f2b2b;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.home-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.projects {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    color: #ffeaea;
    margin-bottom: 3rem;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.project-item {
    background: linear-gradient(90deg, #164bae 0%, #1662ae 100%);
    border: 1px solid #6eaacf;
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.project-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.project-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    color: #ffeaea;
}

.project-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffeaea;
    margin-bottom: 1rem;
}

.project-description {
    color: #e2fffe;
    line-height: 1.6;
}


.symbols {
    margin-bottom: 5rem;
}
.symbols-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #ffeaea;
    margin-bottom: 3rem;
}

.symbols-grid {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.symbol-item {
    background: linear-gradient(90deg, #164bae 0%, #1662ae 100%);
    border: 1px solid #6eaacf;
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 200px;
    min-height: 200px;
}

.symbol-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.symbol-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: #ffeaea;
    transition: all 0.3s ease;
}

.symbol-item:hover .symbol-icon {
    transform: scale(1.1);
}

.symbol-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffeaea;
    text-align: center;
}

.footer {
    width: 100%;
    height: 8%;
    min-height: 50px;
    background-color: transparent;
    display: flex;
}

.footer-content {
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.title p {
    margin: 0;
}

.footer-content p {
    margin: 0;
}


@media screen and (max-width: 600px) {
    .topnav a:not(:nth-child(1)) {
        display: none;
    }

    .topnav a.icon {
        float: right;
        display: block;
        position: absolute;
        background-color: transparent;
        right: 0;
        top: 0;
    }

    .topnav a {
        display: block;
        padding: 14px 16px;
        text-decoration: none;
        font-size: 17px;
        align-content: center;
    }

    .topnav a.active {
        position: relative;
        float: none;
        display: block;
        text-align: center;
        background-color: transparent;
    }

    .topnav.responsive {
        position: relative;
    }

    .topnav.responsive a {
        float: none;
        display: block;
        text-align: center;
    }

    .home h1 {
        font-size: 2.5rem;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .projects {
        padding: 3rem 1rem;
    }

    .symbol-item {
        min-width: 150px;
        min-height: 150px;
        padding: 1.5rem;
    }

    .symbol-icon {
        font-size: 3rem;
    }
}