@import url('https://fonts.googleapis.com/css2?family=Comforter+Brush&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@100;300;400;500&display=swap');

body {
background-color: #fff;
}
	
hr {
  height: 5px;
  background-color: #A3A3A3;
  border: none;
}	

a:link {
color: #3B3D3D;
text-decoration: none;
}
a:visited {
color: #3B3D3D;
text-decoration: none;
}
a:hover {
	color: #ccc;
text-decoration: none;
}
a:active {
	color: #3B3D3D;
text-decoration: none;
}
                    

 
            		
 /* HERO SECTION*/ 
            
            .hero {
   position: relative;
    top: 105px;
    width: 100%;
    background-color: #fff;
    z-index: 999;
	
}

.hero img {
    width: 100%;
    height: auto;
    animation: fade-in-from-corner 1s ease-out forwards; /* Apply animation */
    object-fit: cover; /* Ensures the image scales properly */
	
}



@media only screen and (max-width: 768px) {
  .hero img {
    display: none;
  }
}
     
.hero_smallscreens {
     position: relative;
    top: 59px;
    width: 100%;
    animation: fade-in-from-corner 1s ease-out forwards; /* Apply animation */
	margin-bottom: -39px;
    z-index: 999;
}


.hero_smallscreens img {
    width: 100%;
    height: auto;
    display: block;
     margin: auto;
    animation: fade-in-from-corner 1s ease-out forwards; /* Apply animation */
}

@media only screen and (min-width: 769px) {
  .hero_smallscreens img {
    display: none;
  }
}

/* IMAGE OVERLAY*/ 
.image-container {
        position: relative;
        width: 100%;
    }

    .image-container img {
        display: block;
        width: 100%;
        height: auto;
    }

   .overlay {
    position: absolute;
    top: -4.5%;
    left: -4.5%;
    width: 109%;
    height: 109%;
    background-color: rgba(51, 51, 51, 0.7); /* #333333 with 0.7 opacity */
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
			}

    .image-container:hover .overlay {
        opacity: 1;
    }

    .overlay-text {
        font-family: 'Oswald', sans-serif;
         font-size: calc(9px + .2vw);
line-height: calc(5px +.9vw);
letter-spacing: 2px;
        color: white;
        text-align: center;
		text-transform: uppercase;
    }
/* END IMAGE OVERLAY*/ 

	
/* WORDS*/             
.TooHumble_Headline {
display: block;
width: 100%;
font-size: calc(13px + .5vw);
line-height: calc(19px + 1.5vw);
letter-spacing: 2px;
color: #555;
font-weight: 400;
font-family: Oswald, sans-serif;
text-align: left;
}
			
h1 {
  display: block;
 margin-bottom: 0px;
font-size: calc(19px + 1.7vw); 
line-height: calc(29px + 2vw);
  letter-spacing: 2px;
  color: #555;
  font-weight: 400;
  font-family: "Oswald", sans-serif;
  text-align: left;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
 
.TooHumble {
    display: block;
    font-size: calc(13px + .3vw);
    line-height: calc(3px +.7vw);
    letter-spacing: 1.5px;
    text-align: left;
    color: #333; 
    font-family: Oswald, sans-serif;
	margin-top: calc(27px + .5vw);
    }
     
    @media only screen and (max-width: 768px) {
    .TooHumble {
    color: #333;
        }
    }

.JaneRubin_Top {
width: 79%;
padding-top: 20px;
margin: 0px auto;
}

@media only screen and (max-width: 768px) {
.JaneRubin_Top {
padding-top: 50px;
margin: 0px auto;
}
}
            
.JaneRubin_DancerWhoPaints {
width: 79%;
margin: 0px auto 90px auto;
}

	

/*ANIMATED GRID - 2 columns*/

.animated-grid-container-2 {
width: 100%;
max-width: 1600px;
height: auto;                 
display: grid;
 grid-template-columns: repeat(2, 1fr);  
grid-column-gap: 5vw; 
grid-row-gap: 4vw; 
}


@media only screen and (max-width: 599px) {	
    .animated-grid-container-2 {
        grid-template-columns: repeat(1, 1fr);
        grid-template-rows: repeat(1, 1fr);
		grid-row-gap: 12vw; 
    }
}
	


.animated-grid-item-2 {
    animation: grid-item-appear 1.8s ease forwards;
}

@keyframes grid-item-appear {
    0% {
        opacity: 0;
        transform: translateX(-95%) translateY(-.5%);
    }
    100% {
        opacity: 1;
        transform: translateX(0) translateY(0);
    }
}



.animated-grid-item-2:nth-child(1) {
    animation-delay: 0.2s;
}

.animated-grid-item-2:nth-child(2) {
    animation-delay: 0.4s;
}

.animated-grid-item-2:nth-child(3) {
    animation-delay: 0.6s;
}

.animated-grid-item-2:nth-child(4) {
    animation-delay: 0.8s;
}

.animated-grid-item-2:nth-child(5) {
    animation-delay: 1s;
}

.animated-grid-item-2:nth-child(6) {
    animation-delay: 1.2s;
}

.animated-grid-item-2:nth-child(7) {
    animation-delay: 1.4s;
}

.animated-grid-item-2:nth-child(8) {
    animation-delay: 1.6s;
}

.animated-grid-item-2:nth-child(9) {
    animation-delay: 1.8s;
}

/*END - ANIMATED GRID - 2 columns*/

/*LARGE ANIMATED GRID ITEM - 2-Columns*/


.larger-animated-grid-item-2 {
    animation: grid-item-appear 1.8s ease forwards;
	   position: relative;
    display: inline-block;
}

@media only screen and (max-width: 768px) {	
.larger-animated-grid-item-2 {

    animation: grid-item-appear 1.8s ease forwards;
	   position: relative;
    display: inline-block;
}

}

.larger-animated-grid-item-2 img {
    display: block;
	height: auto;
    width: 100%;
}

.larger-animated-grid-item-2 .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #333333;
    color: #ffffff;
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    font-size: calc(13px + .2vw);
	letter-spacing: 5px;
	font-weight: 100;
    text-align: center;
 transition: opacity 0.3s ease;
}

.larger-animated-grid-item-2:hover .overlay {
    opacity: 0.7;
}

.larger-animated-grid-item-2:nth-child(1) {
    animation-delay: 0.2s;
}

.larger-animated-grid-item-2:nth-child(2) {
    animation-delay: 0.4s;
}

.larger-animated-grid-item-2:nth-child(3) {
    animation-delay: 0.6s;
}

.larger-animated-grid-item-2:nth-child(4) {
    animation-delay: 0.8s;
}

.larger-animated-grid-item-2:nth-child(5) {
    animation-delay: 1s;
}

.larger-animated-grid-item-2:nth-child(6) {
    animation-delay: 1.2s;
}

.larger-animated-grid-item-2:nth-child(7) {
    animation-delay: 1.4s;
}

.larger-animated-grid-item-2:nth-child(8) {
    animation-delay: 1.6s;
}

.larger-animated-grid-item-2:nth-child(9) {
    animation-delay: 1.8s;
}

/*END - LARGE ANIMATED GRID ITEM - 2-Columns*/
