@import url('https://fonts.googleapis.com/css?family=Montserrat:300,400,500,600,700,800&display=swap');

*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

body
{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container
{
    /* position: relative;
    width: 1100px;
    display: flex;
    flex-wrap: wrap; */
    position: relative;
	width: 100%;
	height: 100vh;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.container .box
{
    position: relative;
    width: 275px;
    height: 275px;
    overflow: hidden;
    transition: 0.5s;
    font-family: 'Montserrat', sans-serif;
}

.container .box:hover
{
    z-index: 1;
    transform: scale(1.25);
    box-shadow: 0 25px 40px rgba(0,0,0,.5);
}

.container .box .imgBx
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.container .box .imgBx:before
{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: linear-gradient(180deg,rgb(255, 0, 132),#000);
    mix-blend-mode: multiply;
    opacity: 0;
    transition: 0.5s;
}

.container .box:hover .imgBx:before
{
    opacity: 1;
}

.container .box .imgBx img
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.container .box .content
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: flex;
    padding: 20px;
    align-items: flex-end;
}

.container .box .content h2
{
    color: #fff;
    transition: 0.5s;
    text-transform: uppercase;
    margin-bottom: 5px;
    font-size: 20px;
    transform: translateY(200px);
}

.container .box:hover .content h2
{
    transform: translateY(0);
    transition-delay: 0.6s;
}

.container .box .content p
{
    color: #fff;
    transition: 0.5s;
    font-size: 14px;
    transform: translateY(200px);
}

.container .box:hover .content p
{
    transform: translateY(0);
    transition-delay: 0.7s;
}
section
{
	width: 100%;
    height: 100vh;
	margin: 0;
	padding: 0;
	min-height: 100vh;
	display: flex;
	justify-content: center;
    align-items: center;
	font-family: consolas;
	background-image: url("sky.jpg");
    background: url(backgrounds/ChangesBgPlain.jpg) no-repeat center center fixed;
    background-size: 100% 100%;
}
#navBar
{
	margin-left: 91%;
	margin-top: 2%;
	
}

#navBar a
{
	color: rgb(214, 0, 186);
    text-decoration: none;
	justify-self: start;
	background: none;
    border: rgb(214, 0, 186);
    border-style: solid;
    text-align: center;
    padding: 14px 25px;
	display: inline-block;
	border-radius: 25px;
	align-self: baseline;
	/* font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif; */
}
#navBar a:hover
{
	color: white;
	color: rgb(12, 63, 60);
    text-decoration: none;
	justify-self: start;
	background: rgb(12, 63, 60);
	background: inherit;
    border: rgb(12, 63, 60);
    border-style: solid;
    text-align: center;
    padding: 14px 25px;
	display: inline-block;
	border-radius: 25px;
	align-self: baseline;
}
#hme
{
	margin-right: 20px;
}