@charset "UTF-8";
/*///////////////////////////////////////////////////////////////
////emily grenader dot com 2026 growing together splash page ////
/////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////*/

body {
    margin: 0;
    background: #ffffff;
	font-family: 'Gill Sans', 'Gill Sans MT', 'Myriad Pro', 'DejaVu Sans Condensed', Helvetica, Arial, 'sans-serif';
	font-size: 14px;
	font-weight:100;
    height: 100vh;
	margin: 100px;
	margin-top: 25px;
}


    .link-wrapper {
        position: relative;
        display: inline-block;
        cursor: pointer;
        text-decoration: none;
        color: white;
    }

    .link-wrapper img {
        display: block;
        width: 100%;
        height: auto;
    }

    /* Floating centered text */
    .link-text {
      position: absolute;
        top: 50%;
        left: 40%;
        transform: translate(-50%, -50%);
        text-shadow: 0 0 10px black;
        z-index: 2;
        pointer-events: none;
		color:crimson;
		font-size: 24px;
		letter-spacing: 10px;
    }

    /* Highlight overlay */
    .link-wrapper::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(255, 255, 255, 0);
        transition: background 0.3s ease;
		transition: background 0.3s ease;
        z-index: 1;
    }

    /* Hover effects */
    .link-wrapper:hover::after {
        background: rgba(255, 255, 255, 0.5);
    }

    .link-wrapper:hover .link-text {
        opacity: 1;
    }




h1 {display: none;}



h2 {
	font-size: 20px;
	letter-spacing: 4px;
	font-weight:100;
	}
a:link{ 
	text-decoration: none; 
	color:crimson;
	letter-spacing: 10px;
	}

a:visited {text-decoration: none; 
	color:#999999;
	} 

a:hover, a:active { 
	text-decoration: none; 
	color:#333333;
	}

table {
    border-collapse: collapse;
    border: none;
}

table td, table th {
    border: none;
    outline: none;
	margin:2px;
}

/* EMAIL ICON */
.email-icon {
    position: fixed;
    bottom: 20px;
    right: 50px;  /* shift left from corner to make room for Instagram */
    z-index: 9999;
}

/* INSTAGRAM ICON */
.insta-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;  /* closer to the corner */
    z-index: 9999;
}

/* IMAGE STYLING */
.email-icon img,
.insta-icon img {
    width: 15px;
    height: 15px;
    display: block;
    transition: filter 0.3s ease;
}

.email-icon img:hover,
.insta-icon img:hover {
    filter: brightness(1.25);
}






