@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400..700&display=swap');

:root {
    transition: background-color 0.3s ease, color 0.3s ease;
}

html {
    scrollbar-width: none;
}

* {
  -webkit-tap-highlight-color: transparent;
}

*:focus {
  outline: none !important;
}


::-webkit-scrollbar {
    display: none;
}


* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #ffffff;
    text-align: center;
    padding: 30px;
    color: #141414;
    transition: background-color 0.3s ease, color 0.3s ease;
}

#not-found {
    max-width: 600px;
    width: 100%;
}

h2 {
    font-size: 70px;
    margin-bottom: 15px;
    color: #333;
    font-family: 'Caveat', 'Poppins', sans-serif;
}

p {
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    margin-bottom: 2px;
    color: #505050;
    font-weight: 400;

}

.cta-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;

}

a.small-text {
    font-size: 18px;
    font-weight: 400;
    background: none;
    color: #000000;
    display: table-row;
    margin-top: 10px;
    padding: 0 !important;
    transition: 0.1s ease;
}

a.small-text:hover {
    color: #3628d3;
    text-decoration: none;
}

@media (hover: none) and (pointer: coarse) {
    a.small-text:hover {
    color: #000000;
    text-decoration: none;
}

a.small-text:active {
    color: #3628d3;
    text-decoration: none;
}
}


a.button {
    border: 5px solid #4e4e4e;
    box-shadow: 3px 5px #4e4e4e;
}


a.button:active {
    box-shadow: 0px 0px #4e4e4e;
}


@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 60px;
    font-size: 17px;
    font-weight: 500;
    color: rgb(0, 0, 0);
    text-decoration: none;
    transition: 0.3s ease;
    margin-top: 30px;
    margin-bottom: 10px;
    animation: gradientMove 3s infinite linear;
}

a i {
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}


@media (max-width: 480px) {
    body {
        height: 90vh;
        padding: 30px;
    }

    h2 {
        font-size: 50px;
    }

    p {
        font-size: 18px;
        margin-bottom: 1.8px;

    }

}


@media (prefers-color-scheme: dark) {

body {
    background-color: #121212;
    color: #ffffff;
}

h2,
p,
a.small-text,
a {
    color: #ffffff;
}


a.small-text:hover {
    color: #6255f1;

}

@media (hover: none) and (pointer: coarse) {
 a.small-text:hover {
    color: #ffffff;

}

a.small-text:active {
    color: #6255f1;

}
}


a.button {
    border: 5px solid #ffffff;
    box-shadow: 3px 5px #ffffff;
}


a.button:active {
    box-shadow: 0px 0px #ffffff;
}

}
