@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 24px;
}

body {
    font-family: 'Inter', serif;
    line-height: 1.5;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
    flex-direction: column;
    width: 100%;
    height: 100vh;
    background-color: #f6f1ea;
    background-image: url('https://www.transparenttextures.com/patterns/paper-fibers.png');
    background-size: 300px 300px;
    color: #222;
    margin-top: -1rem;
}

h1,
img {
    transition: transform 0.1s ease-out;
    will-change: transform;
}

h1 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 20px;
    text-transform: uppercase;
    transition: transform 0.1s ease-out, text-shadow 0.1s ease-out;
}

img {
    max-width: 15rem;
    height: auto;
}
