body, header, nav, main, footer, h1, div, img, ul {
    margin: 0;
    padding: 0;
    border: 0;
}

body {
    background-color: #e2dde7;
}

.tablet-desk {
    display: none;
}

header {
    font-family: 'Zen Maru Gothic', san-serif;
    background-color: #e2dde7;
    text-align: center;
    padding: 30px 10%;
    color: #1c0051;
    font-size: 30px;
    display: flex; 
    justify-content: flex-end;
    align-items: center;
}

.logo {
    margin-right: auto;
    
}

nav {
    font-family: 'Zen Maru Gothic', san-serif;
    padding: 1px 20px;
    background-color: #e2dde7;
    text-align: center;
    font-size: 15px; 
}

nav a {
    color: #1c0051;
    text-decoration: none;
    margin: 1px ;
    transition: 0.2s;
    display: inline-block;
    padding: 10px
}

nav a:hover {
    color: #5600ff;
}

.social-icon {
    color: #1c0051;
    text-decoration: none;
    display: inline-block;
    padding: 10px;
    font-size: 18px; 
    transition: transform 0.5s;
}

.social-icon:hover {
    color: #5600ff;
    transform: scale(1.3);
}

main {
    background-color: #e2dde7;
    font-family: 'Zen Maru Gothic', san-serif;
}

.container {
    width: 100%;
    height: auto;
    position: relative;
}

#wrapper .img{
    max-width: 100%;
    max-height: 100%;
}

.text {
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 80px;
    transform: translate(-50%, -50%);
    color: white; 
    text-align: center; 
}

.icon {
    color: #1c0051;
    background-color: #e2dde7;
    font-size: 50px; 
    cursor: pointer; 
}

.icon:hover {
    color: #5600ff; 
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    padding: 1px 300px 1px 300px;
}

.img-wrapper {
    position: relative;
    overflow: hidden;
    padding: 50px;
    transition: transform 0.5s;
}

.img-wrapper > img {
    display: block;
    width: 100%;
    aspect-ratio: 1/1; 
    object-fit: cover; 
    object-position: center; 
}

.img-wrapper > .content {
    position: absolute; 
    inset: 0;
    font-size: 2rem;
    padding: 1rem;
    background: #dbdbdb66;
    display: flex;
    justify-content: center;
    align-items: center; 
}

.img-wrapper > .img,
.img-wrapper > .content {
    transition: 200ms ease-in-out;
}

.img-wrapper:hover > img.blur {
    filter: blur(1px);
}

.img-wrapper:hover > img.zoom {
    transform: scale(1.1);
}

.img-wrapper > .content.fade {
    opacity: 0;
}

.img-wrapper:hover > .content.fade {
    opacity: 1;
}

a:link, a:visited, a:active {
    color: #1c0051; 
}

footer {
    font-family: 'Antic Slab', serif;
    font-size: .70em;
    text-align: center;
    margin-top: 2em;
}