@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

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

html, body {
    height: 100%;
    overflow: hidden; /* prevents scrolling */
    background: #fff;
    font-family: 'Inter', sans-serif;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center; /* centers vertically */
    align-items: center;     /* centers horizontally */
    height: 100vh;
    position: relative;
    text-align: center;
}

.image-box img {
    width: 100%;
    max-width: 300px;
    display: block;
}

.text {
    margin-top: 16px;
    color: #e10600;
    font-size: 1rem;
    line-height: 1.4;
    padding-bottom: 10rem;
}

.logo {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: 20%;
    max-width: 80px;
    opacity: 0.8;
}

.title-404 {
    font-size: 10rem;
    font-weight: bold;
    color: #e10600;
    margin: 0;
}

.back-url {
    color: #e10600;
    text-decoration: underline;
    font-weight: 600;
    margin-top: 1rem;
    display: inline-block;
}