body { font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif; color: #e0e0e0; background: #9c7587; background: linear-gradient(45deg, rgba(156, 117, 135, 1) 0%, rgba(98, 122, 150, 1) 100%); } main { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); text-align: center; font-size: xx-large } main > #logo { max-width: 40vw; max-height: 20vh; } @keyframes spinning { 0% { transform: scaleX(1); } 45% { transform: scaleX(1) } 65% { transform: scaleX(-1); } 100% { transform: scaleX(-1) } } .h-flip { transform: scaleX(1); animation: spinning 2s alternate infinite; display: inline-block; } .no-select { user-select: none; -moz-user-select: none; } .socials-box { display: flex; flex-grow: inherit; flex-direction: row; justify-content: center; } .social { margin: 10px; transition: filter 0.5s; filter: invert(); } .social:hover { transition: filter 0.5s; filter: invert() drop-shadow(0px 0px 5px #e0e0e0) } @media (orientation: portrait) { main { font-size: 4em; } main > #logo { max-width: 80vw; max-height: 30vh; } .social { margin-left: 15px; margin-right: 15px; } .social > a > svg { width: 120; height: 120; } }