@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
}

body {
    font-family: 'Inter', sans-serif;
}

a {
    text-decoration: none;
}

@media (min-width: 768px) {
    .hover-overlay-layer {
        background-color: rgba(0, 0, 107, 0);
        -webkit-clip-path: circle(0% at 50% 50%);
        clip-path: circle(0% at 50% 50%);
        will-change: -webkit-clip-path, clip-path, background-color;
        transition: -webkit-clip-path 720ms cubic-bezier(0.4, 0, 0.2, 1),
                    clip-path 720ms cubic-bezier(0.4, 0, 0.2, 1),
                    background-color 620ms cubic-bezier(0.4, 0, 0.2, 1);
    }

    .group:hover .hover-overlay-layer {
        background-color: rgba(0, 0, 107, 0.4);
        -webkit-clip-path: circle(150% at 50% 50%);
        clip-path: circle(150% at 50% 50%);
        transition: -webkit-clip-path 1000ms ease-in-out,
                    clip-path 1000ms ease-in-out,
                    background-color 700ms ease-in-out;
    }
}
