* { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: "Segoe UI", sans-serif; background-color: #000; color: #fff; min-height: 100vh; display: flex; flex-direction: column; } [class~="navbar"] { position: fixed; top: 0; width: 100%; padding: 1rem 2rem; display: flex; justify-content: space-between; align-items: center; background: rgba(0, 0, 0, 0.4); backdrop-filter: blur(0.625rem); z-index: 1000; } [class~="navbar"] [class~="logo"] { height: 3.75rem; } [class~="navbar"] ul { display: flex; list-style: none; gap: 2rem; } [class~="navbar"] a { color: white; text-decoration: none; transition: color 0.3s; } [class~="navbar"] a:hover { color: #00ffe7; } [class~="hero"] { height: 100vh; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; padding-top: 5rem; } [class~="hero-title"] { font-size: 5rem; font-weight: bold; animation: fadeIn 2s ease-in-out; color: #fff; text-shadow: 0 0.125rem 0.25rem rgba(255, 255, 255, 0.3), 0 0.25rem 0.5rem rgba(255, 255, 255, 0.3); } [class~="soon-text"] { margin-top: 1rem; font-size: 1.2rem; opacity: 0.7; animation: fadelateral 1.5s ease-in-out; } [class~="soon-text"] { cursor: pointer; display: inline-block; padding: 0.75rem 1.75rem; background: linear-gradient(90deg, #0aadff, #0084ff); color: #fff; font-weight: 700; font-size: 1.1rem; border-radius: 0.5rem; box-shadow: 0 0.25rem 0.9375rem rgba(0, 170, 255, 0.4); transition: background 0.3s ease, box-shadow 0.3s ease; user-select: none; position: relative; overflow: hidden; } [class~="soon-text"]:hover { background: linear-gradient(90deg, #007acc, #003366); box-shadow: 0 0.375rem 1.25rem rgba(0, 122, 204, 0.6); } #popup { display: none; } [class~="popup-overlay"] { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: #0e0e0e; display: flex; justify-content: center; align-items: center; z-index: 9999; animation: fadeIn 1s ease-in-out; } [class~="popup-content"] { text-align: center; color: #fff; animation: slideUp 1s ease-out; } [class~="popup-content"] h1 { font-size: 3rem; margin: 0.5rem 0; letter-spacing: 0.125rem; text-shadow: 0 0 0.625rem #0ff; } [class~="popup-content"] button { margin-top: 2rem; padding: 0.7rem 1.5rem; font-size: 1rem; background: #0ff; color: #000; border: none; border-radius: 0.5rem; cursor: pointer; transition: transform 0.2s ease; } [class~="popup-content"] button:hover { transform: scale(1.05); } #text1{ animation: effettotesto1 0.8s ease-in; } #text2{ animation: effettotesto2 1.2s ease-in; } #text3{ animation: effettotesto1 1s ease-in; } @keyframes effettotesto1 { 0% { opacity: 0; transform: translateX(10rem); } 100% { opacity: 1; transform: translateX(0); } } @keyframes effettotesto2 { 0% { opacity: 0; transform: translateX(-9.375rem); } 100% { opacity: 1; transform: translateX(0); } } @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } } @keyframes slideUp { from { transform: translateY(3.125rem); opacity: 0; } to { transform: translateY(0); opacity: 1; } } @media (max-width: 37.5rem) { [class~="popup-content"] h1 { font-size: 2rem; } [class~="popup-content"] button { font-size: 0.9rem; padding: 0.6rem 1.2rem; } } [class~="about"] { padding: 4rem 2rem; background-color: #111; } [class~="about"] h2 { font-size: 2.5rem; margin-bottom: 1rem; } [class~="about"] p { max-width: 50rem; font-size: 1.1rem; line-height: 1.6; opacity: 0.9; } [class~="footer"] { margin-top: auto; padding: 1rem 2rem; text-align: center; background: rgba(0, 0, 0, 0.4); backdrop-filter: blur(0.625rem); position: fixed; bottom: 0; width: 100%; } [class~="notfound-page"] { background-color: #000; color: #fff; font-family: "Segoe UI", sans-serif; min-height: 100vh; display: flex; justify-content: center; align-items: center; text-align: center; padding: 2rem; } [class~="notfound-container"] { max-width: 37.5rem; } [class~="notfound-logo"] { height: 3.75rem; margin-bottom: 1.5rem; filter: brightness(1.2); } [class~="notfound-code"] { font-size: 8rem; font-weight: bold; color: #00ffe7; animation: pulse404 2s infinite; } [class~="notfound-message"] { font-size: 1.8rem; margin-top: -1rem; margin-bottom: 1rem; } [class~="notfound-description"] { font-size: 1rem; opacity: 0.8; line-height: 1.6; } [class~="navbar"] ul li[class~="dropdown"] { position: relative; } [class~="navbar"] ul li[class~="dropdown"] [class~="dropbtn"] { cursor: pointer; display: inline-block; color: white; user-select: none; } [class~="navbar"] ul li[class~="dropdown"] [class~="dropdown-content"] { display: none; position: absolute; background-color: #111; min-width: 10rem; box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.7); border-radius: 0.25rem; top: 100%; left: 0; z-index: 2000; padding: 0.5rem 0; } [class~="navbar"] ul li[class~="dropdown"] [class~="dropdown-content"] li { list-style: none; } [class~="navbar"] ul li[class~="dropdown"] [class~="dropdown-content"] li a { display: block; padding: 0.6rem 1.2rem; color: white; text-decoration: none; font-size: 1rem; transition: background-color 0.3s; margin-top: 0.25rem; } [class~="navbar"] ul li[class~="dropdown"] [class~="dropdown-content"] li a:hover { background-color: #00ffe7; color: #000; } [class~="navbar"] ul li[class~="dropdown"]:hover [class~="dropdown-content"] { display: block; } @media (max-width: 37.5rem) { [class~="navbar"] ul { flex-direction: column; gap: 0; } [class~="navbar"] ul li[class~="dropdown"] [class~="dropdown-content"] { position: static; box-shadow: none; background-color: transparent; padding-left: 1rem; } [class~="navbar"] ul li[class~="dropdown"] [class~="dropdown-content"] li a { padding: 0.5rem 0; } } [class~="notfound-description"] a { color: #00ffe7; text-decoration: underline; } [class~="notfound-button"] { display: inline-block; margin-top: 2rem; padding: 0.75rem 1.5rem; background-color: #00ffe7; color: #000; border-radius: 1.875rem; text-decoration: none; font-weight: bold; transition: transform 0.3s; } [class~="notfound-button"]:hover { transform: scale(1.05); } @keyframes pulse404 { 0%, 100% { text-shadow: 0 0 0.625rem #00ffe7, 0 0 1.25rem #00ffe7; } 50% { text-shadow: 0 0 1.5625rem #00ffe7, 0 0 3.125rem #00ffe7; } } @keyframes fadeIn { 0% { opacity: 0; transform: translateY(1.25rem); } 100% { opacity: 1; transform: translateY(0); } } @keyframes fadelateral { 0% { opacity: 0; transform: translateX(-3.75rem); } 100% { opacity: 1; transform: translateX(0); } } @media (max-width: 37.5rem) { [class~="hero-title"] { font-size: 3rem; } [class~="navbar"] ul { gap: 1rem; } [class~="navbar"] img { width: 3.625rem; height: 3.125rem; } [class~="about"] h2 { font-size: 2rem; } } [class~="hamburger"] { display: none; flex-direction: column; justify-content: space-around; width: 1.875rem; height: 1.5625rem; background: transparent; border: none; cursor: pointer; z-index: 1600; position: relative; } [class~="hamburger"] span { width: 100%; height: 0.1875rem; background-color: white; border-radius: 0.125rem; transition: all 0.3s ease; } @media (max-width: 37.5rem) { [class~="hamburger"] { display: flex; } header[class~="navbar"] nav { position: fixed; top: 0; left: 0; height: 100vh; width: 100vw; background-color: rgba(0, 0, 0, 0.95); backdrop-filter: blur(0.75rem); transform: translateX(-100%); transition: transform 0.3s ease-in-out; z-index: 1500; padding-top: 4rem; overflow-y: auto; } header[class~="navbar"] nav[class~="active"] { transform: translateX(0); } header[class~="navbar"] nav ul { display: flex; flex-direction: column; padding: 0; margin: 0; list-style: none; } header[class~="navbar"] nav ul li { margin: 0; } header[class~="navbar"] nav ul li a, header[class~="navbar"] nav ul li [class~="dropbtn"] { display: block; padding: 1.2rem 2rem; font-size: 1.3rem; border-bottom: 0.0625rem solid #222; color: white; } header[class~="navbar"] nav ul li[class~="dropdown"] [class~="dropdown-content"] { position: static; box-shadow: none; background: none; padding-left: 1.5rem; display: none; } header[class~="navbar"] nav ul li.dropdown[class~="active"] [class~="dropdown-content"] { display: block; } } [class~="footer"] { position: fixed; bottom: 0; width: 100%; background: rgba(0,0,0,0.4); backdrop-filter: blur(0.625rem); padding: 1rem 2rem; text-align: center; z-index: 1601; }