/* 1. RESET & BASIC SETUP */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Bricolage Grotesque', Helvetica, Arial, sans-serif; /* Clean sans-serif font */
    background-color: #F5F5F5; /* Light grey background */
    color: #1A4ADB; /* The specific Royal Blue color */
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Centers vertically */

}

/* 2. LOGO STYLING */
.logo {
    width: 200px; /* Adjust based on your actual image size */
    margin-bottom: 15vh; /* Push the line down, away from logo */
    margin-top: 2vh;
    margin-left: 2vh;
}

/* 3. THE LINE (HR) STYLING */
hr {
    border: none;
    height: 1px;
    background-color: #6e8ceb; /* Slightly lighter blue for the line */
    opacity: 0.5;
    width: 100%;
    margin-bottom: 50px; /* Space between line and 'hello.' */
}

/* 4. MAIN TEXT STYLING */
h1 {
    font-size: 10rem; /* Massive text size */
    font-weight: 700;
    letter-spacing: -5px; /* Tightens the letters like the design */
    line-height: 0.75;
    margin-bottom: 2vh;
    margin-left: 2vh;
}