*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'poppins', sans-serif;
    font-size: 18px;
}

.logo {
    width: 30%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: -18%;
    margin-bottom: -18%;
    width: 50%;
    }

.head{
    position: center;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

body{
    background-image: url("image/background.webp");
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    overflow-x: hidden; /* Hide horizontal scrollbar */
}
.header{
    margin-top: -2%;
    margin-right: 0%;
    margin-left: 0%;
    height: 80%;
    width: 80%;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    z-index: 200;
}

nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

nav ul li{
    display: inline-block;
    list-style: none;
    margin: 100px 20px;
    margin-right: 0px;
}
nav ul li a{
    color: #ffffff;
    text-decoration: none;
    font-size: 35px;
    position: relative;
}
nav ul li a::after{
    content:'';
    width: 0%;
    height: 3px;
    background: #ffffff;
    position: absolute;
    left: 0;
    bottom: -6px;
    transition: 0.5s;
}
nav ul li a:hover::after{
    width: 100%;
}
.header-text{
    margin-top: 20%;
    margin-left: 25%;
    font-size: 30px;

}
.header-text h1{
    font-size: 60px;
    margin-top: 20px;
}
.header-text span{
    color: #ffffff;
}

/*LOGO*/

.row {
    display: flex;
    flex-wrap: wrap;
    padding: 0 4px;
  }
  
.spacer{
    margin-top: -20%;
}
  

.wrapper{
	width: 100%;
    transform: scale(1.8);
}

.container{
    margin-bottom: 20%;
    margin-top: 50%;
}

.container > div {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2em;
    color: #ffeead;
}

.container > div > img {
    width: 100%;
    height: 100%;
    filter: none;
    object-fit: cover;
		border: 1px solid black
}

.container > div > img:hover{
    z-index: 20;
    transform: scale(1.2);
    border: 0px;
    border-radius:5px;
    transition: 
    transform 200ms linear;
}

.horizontal > img:hover{
    z-index: 20;
    height: fit-content;
    transform: scale(1.2);
    border: 0px;
    border-radius:5px;
    transition: 
    transform 200ms linear;
}

.vertical > img:hover{
    z-index: 20;
    width: fit-content;
    transform: scale(1.2);
    border: 0px;
    border-radius:5px;
    transition: 
    transform 200ms linear;
}

.big > img:hover{
    z-index: 20;
    width: fit-content;
    transform: scale(1.2);
    border: 0px;
    border-radius:5px;
    transition: 
    transform 200ms linear;
}

.normal > img:hover{
    z-index: 20;
    height: fit-content;
    transform: scale(1.2);
    border: 0px;
    border-radius:5px;
    transition: 
    transform 200ms linear;
}

.normal_smol > img:hover{
    z-index: 20;
    height: 130%;
    width: fit-content;
    transform: scale(1.2);
    border: 0px;
    border-radius:5px;
    transition: 
    transform 200ms linear;
}

.container > div > img:not(:hover){
    transform: scale(1.0) translateZ(2);;
    border-radius: 0px;
    transition: 
    transform 200ms linear,
    border-radius 200ms linear;
}


/* Grid */
.container {
    display: grid;
    grid-gap: 5px;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    grid-auto-rows: 125px;
		grid-auto-flow: dense; /* Fill all spaces with fitted images */
}

.horizontal {
	grid-column: span 2;
}

.vertical {
	grid-row: span 2;
}

.big {
	grid-column: span 2;
	grid-row: span 2;
}

/* Media Queries */

@media screen and (min-width: 1024px){
	.wrapper{
		width: 960px;
		margin: 0 auto;
	}
}


.head2{
    margin-top: 30vh;
    text-align: center;
} 