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

html, body {
    overflow-x: hidden;
}

body {
    font-family: Poppins, sans-serif;
    background: radial-gradient(#0c3558, #100a3d, #040116);
    color: white;
    display: grid;
    grid-template-rows: auto 1fr auto;
    min-height: 100dvh;
}

.item-grow:hover {
    transform: scaleX(1.08);
}

.text-pulse:hover {
    transform: scale(1.08);
    text-shadow: 1px -1px 5px #00b7ff
}

.item-grow,
.text-pulse {
    transition: transform 0.5s ease, text-shadow 0.5s ease;
}