/* Reset */
        *{
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

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

        .background{
            background-color: rgb(187, 187, 187)
        }
        
        .topNavigation{
            background-color: rgb(99, 98, 98);
            overflow: hidden;
        }
        
        .container{
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .container-right{
            display: flex;
            justify-content: right;
            align-items: right;
        }

        .container-left{
            display: flex;
            justify-content: left;
            align-items: left;
        }

        .straightText{
            color: "black";
        }

        .interactiveText-wrapper{
            display: flex;
            justify-content: flex-end; /* right */
            
            padding-right: 10%  ;
        }

        .interactiveText{
            white-space: nowrap;

            display: inline-block;

            transform-origin: center;
            transition: transform 0.3s ease;
        }

        .interactiveText:hover{
            transform: scale(1.20);
        }
        

        .bigImage{
            border-color: black;
            border-style: solid;
            border-width: 7px;
            border-radius: 30%;
            
            display: flex;
            justify-self: center;
            justify-content: center;
            align-items: center;
            
            min-height: 150px;
            min-width: 150px;
            max-height: 225px;
            max-width: 225px;
            width: 15%;
            height: 15%;

            transition: transform 0.3s ease;
        }

        .bigImage.hovered {
            transform: scale(1.1);
        }

        .tissContainer{
            display: grid;
            grid-template-columns: auto auto;
            padding: 10px;
            column-gap: min(200px, 5%);

        }

        .tissContainer div{
            padding: 10px;
            text-align: center;

        }

        .tissImage{
            border-color: black;
            border-style: solid;
            border-width: 7px;
            border-radius: 30%;
            
            display: flex;
            justify-self: center;
            justify-content: center;
            align-items: center;
            
            min-height: 150px;
            min-width: 150px;
            max-height: 400px;
            max-width: 225px;
            width: 15%;
            height: 15%;
            
            margin-left: 20%;
            margin-top: 5%;
        }
        
        .tissTitleText{
            color: #000000;
            font-size: 45pt;              
        }

        .tissDescriptonText div{
            display: flex;
            color: #000000;
            border-color: black;
            border-style: solid;
            border-width: 7px;
            border-radius: 30%;

            visibility: visible;
            
        }


        #samePlaceList span{
            color: initial;
        }

        
        #darkModeButton{
            display: flex;
            
            margin-right: 1%;
            margin-top: 1%;

            margin-bottom: -2.05%;

        }

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


        .site-wrapper{
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }

        .site-content{
            flex: 1;
        }

        .projects-grid{
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            row-gap: 5px;
            gap: 20px;

            justify-items: center;
            padding-top: 10px;
            padding-left: 5%;
            padding-right: 5%;
        }

        .project-wrapper{
            max-width: 400px;
            display: inline-block;
            overflow: visible;
        }
        
        .project-card{
            width: 400px;
            background-color: rgb(255, 255, 255);
            border: 2px solid rgb(204, 204, 204);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
            margin: 20px auto;
            display: block;
            transform-origin: center;
        }

        .project-card:hover{
            transform: scale(1.1);
            clip-path: inset(0);
        }

        .project-card img {
            object-fit: cover;
            width: 100%;
            height: 230px;
            display: block;
        }

        .project-info {
            padding: 15px;
        }

        .project-info h3 {
            margin: 0 0 10px;
        }

        .project-info p{
            font-size: 14px;
            color: rgb(85, 85, 85);
        }

        .project-card-P{
            width: 330px;
            background-color: rgb(255, 255, 255);
            border: 2px solid rgb(204, 204, 204);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
            margin: 20px auto;
            display: block;
        }

        .project-card-P:hover {
            transform: scale(1.1);
        }

        .project-card-P img {
            object-fit: cover;
            width: 100%;
            height: 190px;
            display: block;
        }

        .project-info-P {
            padding: 15px;
        }

        .project-info-P h3 {
            margin: 0 0 10px;
        }

        .project-info-P p {
            font-size: 14px;
            color: #555;
        }


        .site-footer {
            background-color: #000000;
            color: #eee;
            padding: 40px 20px 20px;
            font-size: 14px;
        }

        .footer-content{
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 20px;
            max-width: 1000px;
            margin: 0 auto;
        }

        .footer-section {
            flex: 1 1 200px;
        }

        .footer-section h4{
            margin-bottom: 10px;
            color: #fff;
        }

        .footer-section a{
            color: #00bfff;
            text-decoration: none;
        }

        .footer-section a:hover{
            text-decoration: underline;
        }

        .footer-bottom{
            margin-top: 30px;
            text-align: center;
            font-size: 12px;
            color: #aaa;
            border-top: 1px solid #444;
            padding-top: 10px;
        }
