* {

    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

html,
body {

    width: 100%;
    height: 100%;

}

.hero {

    position: top left;

    width: 100%;

    height: 100vh;

    overflow: hidden;

}

.hero-image {

    width: 100%;

    height: 100%;

    object-fit: cover;

    display: block;

}

.topbar {

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 100px;

    padding: 0 60px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    z-index: 10;

}

.brand {

    color: #ffffff;

    font-size: 20px;

    font-weight: 700;

    letter-spacing: 1px;

}

body {

    font-family:
        "Inter",
        sans-serif;

}

.topbar {

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 150px;

    padding: 0 60px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    z-index: 10;

}

.brand-logo {

    height: 60px;

    width: auto;

    display: block;

}

.topbar-actions {

    display: flex;

    align-items: center;

    gap: 20px;

}

.button {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-width: 110px;

    height: 50px;

    border-radius: 12px;

    text-decoration: none;

    font-size: 18px;

    font-weight: 600;

    transition: all 0.2s ease;

}

.button-login {

    color: #ffffff;

    border: 1px solid
        rgba(
            255,
            255,
            255,
            0.20
        );

    background:
        rgba(
            255,
            255,
            255,
            0.03
        );

    backdrop-filter:
        blur(6px);

}

.button-register {

    background: #ffffff;

    color: #ff4a2d;

    border: none;

}

.hero-content {

    position: absolute;
    
    margin-top: 40px;
    
    margin-left: 100px;

    left: 60px;

    top: 50%;

    transform:
        translateY(-50%);

    z-index: 10;

    max-width: 700px;

}

.hero-content h1 {

    color: #ffffff;

    font-size: 120px;

    font-weight: 800;

    line-height: 0.95;

    letter-spacing: -3px;

    margin-bottom: 24px;

    text-shadow:
        0 4px 4px
        rgba(
            0,
            0,
            0,
            0.95
        );

}

.hero-content p {

    color:
        rgba(
            255,
            255,
            255,
            0.90
        );

    font-size: 24px;
    
    font-weight: 800;

    line-height: 1.5;

    max-width: 600px;

     text-shadow:
        0 2px 4px
        rgba(
            0,
            0,
            0,
            0.95
        );

}