:root {
    --light-blue-color: #06a0de;
    --light-sky-color: #0096F2;
    --blue-color: #10528e;
    --dark-blue-color: #202e52;
    --dark-color: #222222;
    --light-grey-color: #f5f5f5;
}

*,
::after,
::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Josefin Sans', sans-serif;
    line-height: 1.5;
}

html,
body {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    max-width: 100vw;
    min-height: 100vh;
    position: relative;
    background-color: var(--light-grey-color);
    padding: 1.5rem;

    display: flex;
    align-items: center;
    justify-content: center;
}

::-moz-selection {
    color: var(--white-color);
    background-color: var(--light-blue-color);
}

::selection {
    color: var(--white-color);
    background-color: var(--light-blue-color);
}

.body-bg {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    width: calc(100% - 3rem);
    height: calc(100% - 3rem);
    background-image: url(../img/not-found-pg-icon.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.07;
}

.logo {
    margin-bottom: 1.5rem;
}

.logo img,
.logo svg {
    width: 100%;
    height: auto;
    max-width: 360px;
}

.content {
    position: relative;
    text-align: center;
    max-width: 720px;
}

h1 {
    font-size: 20rem;
    line-height: 1;
    color: var(--blue-color);
    -webkit-text-stroke-width: 0.15rem;
    -webkit-text-stroke-color: #e5eff5;
    letter-spacing: -3.75rem;
    margin-left: -3rem;
}

h2 {
    color: var(--blue-color);
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

a {
    font-size: 1.25rem;
    text-decoration: none;
    display: inline-block;
    background-color: var(--blue-color);
    padding: 0.75rem 2rem 0.65rem;
    color: white;
}

@media screen and (max-width:1200px) {

    h1 {
        font-size: 15rem;
        letter-spacing: -3rem;
        margin-left: -2.5rem;
        -webkit-text-stroke-width: 0.125rem;
    }
}

@media screen and (max-width:576px) {

    h1 {
        font-size: 11rem;
        letter-spacing: -2.15rem;
        margin-left: -2rem;
        -webkit-text-stroke-width: 0.1rem;
    }
    h2 {
        font-size: 1.25rem;
    }

    .logo img,
    .logo svg {
        max-width:240px;
    }
    a {
        font-size: 1rem;
    }
}