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

html,
body {
    width: 100%;
    min-height: 100%;
}

body {
    background:
        radial-gradient(
            circle at center,
            #13233a 0%,
            #08111f 45%,
            #03070d 100%
        );

    font-family: Arial, Helvetica, sans-serif;
    color: white;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.logo {
    position: relative;
    z-index: 2;

    font-size: clamp(34px, 5vw, 68px);
    font-weight: 700;
    letter-spacing: 8px;

    margin-bottom: 35px;
}

.logo span {
    font-weight: 300;
    color: #4da3ff;
}

.avatar {
    position: relative;
    width: min(440px, 85vw);
    display: flex;
    justify-content: center;
}

.avatar::before {
    content: "";
    position: absolute;
    width: 65%;
    height: 65%;
    top: 15%;
    left: 17%;

    background: rgba(40, 130, 255, 0.18);
    filter: blur(70px);
    border-radius: 50%;
}

.avatar img {
    position: relative;
    z-index: 1;

    display: block;
    max-width: 100%;
    max-height: 65vh;
    object-fit: contain;
}