* { box-sizing: border-box; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } body { margin: 0; background-color: #000; overscroll-behavior: none; overflow: hidden; height: 100%; } a { text-decoration: none; color: inherit; } #info { position: fixed; top: 15px; left: 15px; z-index: 1001; display: grid; grid-template-columns: 50px auto; grid-template-rows: auto auto; column-gap: 10px; align-items: center; color: #e0e0e0; text-shadow: 1px 1px 5px rgba(0, 0, 0, .7); font: 400 14px 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; } #info > a.logo-link { grid-column: 1; grid-row: 1 / span 2; display: block; width: 50px; height: 50px; background: no-repeat center / contain; background-image: url('data:image/svg+xml;utf8,'); } .title-wrapper { grid-column: 2; grid-row: 1; display: flex; align-items: center; } #info > small { grid-column: 2; grid-row: 2; font-size: 12px; color: #e0e0e0; } .title-wrapper > a { font-weight: 600; } .title-wrapper > span { opacity: .7; position: relative; padding-left: 12px; margin-left: 10px; } #info > small a { color: #ff0; text-decoration: none; } #info > small a:hover { text-decoration: underline; } .title-wrapper > span::before { content: ""; position: absolute; left: 1px; top: calc(50% + 1px); transform: translateY(-50%); width: 1px; height: 12px; background: #c3c3c3; opacity: .5; }