* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #080951;
}

.full-web-page {
    min-height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.full-web-page img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    -webkit-mask-image: 
        linear-gradient(to top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 40%),
        linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 40%),
        linear-gradient(to left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 40%),
        linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 40%);
    -webkit-mask-composite: source-in;
    mask-image: 
        linear-gradient(to top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 20%),
        linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 20%),
        linear-gradient(to left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 20%),
        linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 20%);
    mask-composite: intersect;
}

footer {
    position: absolute;
    top: 95%;
    color: #a09ff0;
    font-size: clamp(12px, 2vw, 20px);
}

header {
    position: absolute;
    top: 75%;
}

h1 {
    color: #fff;
    font-size: clamp(38px, 5vw, 84px);
}

.orb {
    color: #0df9fe;
}