/*
1. Use a more-intuitive box-sizing model.
*/
*, *::before, *::after {
box-sizing: border-box;
margin: 0;
padding: 0;
}

html, body {
    background-color: #363633;
}
/*
Typographic tweaks!
3. Add accessible line-height
4. Improve text rendering
*/
body {
line-height: 1.5;
-webkit-font-smoothing: antialiased;
height: 100vh;
height: 100dvh;
}
/*
5. Improve media defaults
*/
img, picture, video, canvas, svg {
display: block;
max-width: 100%;
}
/*
6. Remove built-in form typography styles
*/
input, button, textarea, select {
font: inherit;
}
/*
7. Avoid text overflows
*/
p, h1, h2, h3, h4, h5, h6 {
overflow-wrap: break-word;
}
/*
8. Create a root stacking context
*/
#root, #__next {
isolation: isolate;
}

.arimo {
    font-family: "Arimo", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

.outfit {
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

.image-box-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50.1%, -50.1%);
    object-fit: cover;
    width: 100%;
    height: 100%;
    animation: unzoom 0.25s linear forwards;
}

.image-box-image:hover {
    animation: zoom 0.25s linear forwards;
}

@keyframes zoom {
    0% {
        width: 100%;
        height: 100%;
    }
    60% {
        width: 135%;
        height: 135%;
    }
    100% {
        width: 130%;
        height: 130%;
    }
}

@keyframes unzoom {
    0% {
        width: 130%;
        height: 130%;
    }
    40% {
        width: 135%;
        height: 135%;
    }
    100% {
        width: 100%;
        height: 100%;
    }
}