* { box-sizing: border-box; } .section { width: 100%; height: 100vh; display: flex; justify-content: center; align-items: center; } .pin-section { border-top: dashed 2px var(--color-surface50); border-bottom: dashed 2px var(--color-surface50); } .content { width: 100%; max-width: 1200px; margin: 0 auto; display: flex; padding: 0 10px; position: relative; } .content ul { font-size: 30px; color: var(--color-surface-white); margin: 0; padding: 0; padding-right: 10px; list-style: none; flex-grow: 0; } .content .fill { position: absolute; top: 0; left: 0; width: 2px; height: 100%; background-color: var(--color-shockingly-green); } .content .right { flex-grow: 1; position: relative; } .right .slide { position: absolute; width: 50%; top: 50%; transform: translateY(-50%); right: 1rem; opacity: 0; visibility: hidden; border-radius: 10px; } img { width: 100%; max-width: 300px; }