﻿.svg-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.svg-container {
    width: 80%;
    max-width: 1250px;
    margin: 0 auto;
    opacity: 0.5;
}

    .svg-container svg {
        width: 100%;
        height: auto;
        display: block;
    }

.svg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: left;
    text-shadow: -2px -2px 0 #000, 2px -2px 0 #000, -2px 2px 0 #000, 2px 2px 0 #000;
}

    .svg-text h1 {
        font-weight: 700;
        font-size: 150px;
        margin: 0;
    }

        .svg-text h1 .highlight {
            display: block;
        }

    .svg-text p {
        font-size: 20px;
        color: #8e8e93;
        max-width: 800px;
        margin: 0 auto;
    }

    .svg-text a.btn {
        text-shadow: none;
        display: inline-flex;
        align-items: center;
        gap: 5px;
        padding: 8px 12px;
        background-color: #28a745;
        color: #fff;
        border-radius: 5px;
        text-decoration: none;
        cursor: pointer;
    }

        .svg-text a.btn svg {
            stroke: currentColor;
        }

.svg-project {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: left;
}

.github-link {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 2000;
}

.github-icon {
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    transition: color 0.3s ease;
}

    .github-icon:hover {
        color: #00aced;
    }
