@import url(style.css); path { transition: 0.3s; } .main-title { text-align: center; font-size: 3em; font-weight: 800; color: white; line-height: 0.9em; letter-spacing: 0.1em; margin: 5vh; } .main-title .thin { font-weight: 200; } .lower-buttons { font-size: 1.3em; margin-top: 20px; display: flex; text-align: center; } .lower-buttons a { text-decoration: none; color: lightgray; margin-bottom: 3px; margin-top: 3px; transition: 0.3s; } .lower-buttons a:hover { transition: 0.3s; } .lower-buttons .email:hover { color: #e6ca1c; } .lower-buttons a:hover { color: white; } .lower-buttons a::before { position: relative; margin-right: 4px; content: ""; display: inline-block; width: 12px; height: 12px; border-radius: 50%; background-color: lightgray; background-repeat: no-repeat; transition: 0.3s; } .lower-buttons a::after { position: relative; margin-left: 4px; content: ""; display: inline-block; top: 50%; width: 12px; height: 12px; border-radius: 50%; background-color: lightgray; background-repeat: no-repeat; transition: 0.3s; } .lower-buttons a:hover::before { transform: translateX(-12px); background-color: white; transition: 0.3s; } .lower-buttons a:hover::after { transform: translateX(12px); background-color: white; transition: 0.3s; } .lower-buttons a.email:hover::before { background-color: #e6ca1c; } .lower-buttons a.email:hover::after { background-color: #e6ca1c; }