@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

* {
    box-sizing: border-box;
}

:root {
    --primary: #c025eb;
    --light: #f1f8ff;
}

body {
    background-color: var(--light);
    font-family: 'Poppins', sans-serif;
    height: 100vh;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.content {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.wrapper-1 {
    width: 100%;
    max-width: 650px;
    background: #fff;
    padding: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    text-align: center;
}

.wrapper-2 {
    /* this class is still in html, but we dont need specific styles for it */
}

h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5em;
    font-weight: 600;
    color: var(--primary);
    margin: 0 0 15px;
}

p {
    margin: 0 0 15px;
    font-size: 1.15em;
    color: #667085; /* A softer, modern gray */
    line-height: 1.6;
}

.go-home {
    background: var(--primary);
    border: none;
    color: #ffffff;
    font-weight: 500;
    font-size: 16px;
    padding: 14px 35px;
    margin-top: 25px;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.2);
}

.go-home:hover {
    background-color: #1d4ed8; /* Darker blue */
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
}

.go-home:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.2);
}

a {
    text-decoration: none;
}


@media (max-width: 768px) {
    .wrapper-1 {
        padding: 40px 30px;
    }
    h1 {
        font-size: 2.8em;
    }
    p {
        font-size: 1.1em;
    }
}


@media (max-width: 480px) {
    body {
        padding: 15px;
    }
    .wrapper-1 {
        padding: 30px 20px;
    }
    h1 {
        font-size: 2.2em;
    }
    p {
        font-size: 1em;
    }
    .go-home {
        padding: 12px 28px;
        font-size: 14px;
    }
}
