| | * { |
| | margin: 0; |
| | padding: 0; |
| | box-sizing: border-box; |
| | } |
| |
|
| | html, body { |
| | height: 100%; |
| | overflow: hidden; |
| | scroll-behavior: smooth; |
| | } |
| |
|
| | body { |
| | font-family: Arial, sans-serif; |
| | background: black; |
| | color: white; |
| | line-height: 1.6; |
| | } |
| |
|
| | .scroll-container { |
| | height: 100%; |
| | overflow-y: scroll; |
| | scroll-snap-type: y mandatory; |
| | } |
| |
|
| | header { |
| | display: flex; |
| | justify-content: space-between; |
| | align-items: center; |
| | padding: 20px; |
| | background: black; |
| | border-bottom: 1px solid white; |
| | position: sticky; |
| | top: 0; |
| | z-index: 1000; |
| | } |
| |
|
| | .logo { |
| | font-size: 24px; |
| | font-weight: bold; |
| | } |
| |
|
| | .navigation ul { |
| | display: flex; |
| | list-style: none; |
| | } |
| |
|
| | .navigation ul li { |
| | margin: 0 15px; |
| | } |
| |
|
| | .navigation ul li a { |
| | text-decoration: none; |
| | color: white; |
| | font-size: 16px; |
| | transition: color 0.3s ease, transform 0.3s ease; |
| | } |
| |
|
| | .navigation ul li a:hover { |
| | color: grey; |
| | transform: scale(1.05); |
| | } |
| |
|
| | .menu-toggle { |
| | display: none; |
| | font-size: 24px; |
| | cursor: pointer; |
| | } |
| |
|
| | section { |
| | display: flex; |
| | justify-content: center; |
| | align-items: center; |
| | text-align: center; |
| | height: 100vh; |
| | scroll-snap-align: start; |
| | flex-direction: column; |
| | } |
| |
|
| | .section-content { |
| | max-width: 1200px; |
| | width: 100%; |
| | } |
| |
|
| | .section h1, .section h2 { |
| | font-size: 36px; |
| | margin-bottom: 15px; |
| | } |
| |
|
| | .section p { |
| | font-size: 18px; |
| | max-width: 800px; |
| | margin: 0 auto; |
| | } |
| |
|
| | .portfolio { |
| | display: grid; |
| | grid-template-columns: 1fr 1fr; |
| | gap: 20px; |
| | margin-top: 20px; |
| | } |
| |
|
| | .item { |
| | padding: 20px; |
| | background-color: #f4f4f4; |
| | border-radius: 8px; |
| | box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); |
| | text-align: center; |
| | } |
| |
|
| | .liquid-digital-assets { |
| | background-color: #e0f7fa; |
| | } |
| |
|
| | .partners { |
| | background-color: #f1f8e9; |
| | } |
| |
|
| | |
| | .portfolio-grid { |
| | display: grid; |
| | grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); |
| | gap: 20px; |
| | justify-items: center; |
| | align-items: center; |
| | } |
| |
|
| | |
| | .portfolio-item { |
| | text-align: center; |
| | } |
| |
|
| | .portfolio-item img { |
| | max-width: 80px; |
| | height: auto; |
| | margin-bottom: 10px; |
| | } |
| |
|
| | .portfolio-item p { |
| | font-size: 14px; |
| | color: white; |
| | } |
| |
|
| | |
| | @media (max-width: 768px) { |
| | .portfolio-grid { |
| | grid-template-columns: repeat(auto-fit, minmax(100px, 1fr)); |
| | } |
| |
|
| | .portfolio-item img { |
| | max-width: 60px; |
| | } |
| |
|
| | .portfolio-item p { |
| | font-size: 12px; |
| | } |
| |
|
| | |
| | .navigation ul { |
| | display: none; |
| | flex-direction: column; |
| | position: absolute; |
| | top: 60px; |
| | right: 0; |
| | background: black; |
| | width: 100%; |
| | height: auto; |
| | transform: translateY(-100%); |
| | transition: transform 0.5s ease-in-out; |
| | z-index: 1000; |
| | } |
| |
|
| | .navigation.active ul { |
| | display: flex; |
| | transform: translateY(0); |
| | } |
| |
|
| | .menu-toggle.active { |
| | color: white; |
| | } |
| |
|
| | .menu-toggle { |
| | display: block; |
| | } |
| |
|
| | |
| | .close-btn { |
| | position: absolute; |
| | top: 20px; |
| | left: 20px; |
| | font-size: 30px; |
| | color: white; |
| | cursor: pointer; |
| | } |
| | } |
| |
|
| | |
| | .project-container { |
| | display: flex; |
| | justify-content: center; |
| | align-items: flex-start; |
| | gap: 20px; |
| | flex-wrap: wrap; |
| | margin-top: 30px; |
| | padding: 0 20px; |
| | } |
| |
|
| | .project-card { |
| | background-color: #1a1a1a; |
| | border-radius: 8px; |
| | box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); |
| | text-align: center; |
| | padding: 20px; |
| | width: 300px; |
| | transition: transform 0.3s ease, box-shadow 0.3s ease; |
| | } |
| |
|
| | .project-card img { |
| | width: 100%; |
| | height: 150px; |
| | object-fit: cover; |
| | border-radius: 4px; |
| | margin-bottom: 15px; |
| | } |
| |
|
| | .project-card h3 { |
| | font-size: 20px; |
| | margin-bottom: 10px; |
| | color: #fff; |
| | } |
| |
|
| | .project-card p { |
| | font-size: 16px; |
| | color: #ccc; |
| | margin-bottom: 15px; |
| | } |
| |
|
| | .project-card a { |
| | display: inline-block; |
| | padding: 10px 20px; |
| | background-color: #007bff; |
| | color: #fff; |
| | text-decoration: none; |
| | border-radius: 4px; |
| | font-size: 14px; |
| | transition: background-color 0.3s ease; |
| | } |
| |
|
| | .project-card a:hover { |
| | background-color: #0056b3; |
| | } |
| |
|
| | .project-card:hover { |
| | transform: translateY(-5px); |
| | box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3); |
| | } |
| |
|
| | |
| | @media (max-width: 768px) { |
| | .portfolio { |
| | grid-template-columns: 1fr; |
| | } |
| |
|
| | .project-container { |
| | flex-direction: column; |
| | align-items: center; |
| | } |
| |
|
| | .project-card { |
| | width: 90%; |
| | } |
| |
|
| | .section { |
| | padding: 30px 20px; |
| | } |
| |
|
| | .section h1, .section h2 { |
| | font-size: 28px; |
| | } |
| |
|
| | .section p { |
| | font-size: 16px; |
| | } |
| | } |
| |
|
| | |
| | @keyframes fadeIn { |
| | 0% { |
| | opacity: 0; |
| | } |
| | 100% { |
| | opacity: 1; |
| | } |
| | } |
| |
|
| | |
| | @keyframes slideInUp { |
| | 0% { |
| | opacity: 0; |
| | transform: translateY(50px); |
| | } |
| | 100% { |
| | opacity: 1; |
| | transform: translateY(0); |
| | } |
| | } |
| |
|
| | |
| | @keyframes zoomIn { |
| | 0% { |
| | opacity: 0; |
| | transform: scale(0.8); |
| | } |
| | 100% { |
| | opacity: 1; |
| | transform: scale(1); |
| | } |
| | } |
| |
|
| | |
| | #Home { |
| | animation: fadeIn 1s ease-in-out forwards; |
| | } |
| |
|
| | #What-I-Do { |
| | animation: slideInUp 1s ease-in-out forwards; |
| | } |
| |
|
| | #Portfolio { |
| | animation: zoomIn 1s ease-in-out forwards; |
| | } |
| |
|
| | |
| | .section { |
| | opacity: 0; |
| | transform: translateY(50px); |
| | transition: opacity 1s, transform 1s; |
| | } |
| |
|
| | .section.visible { |
| | opacity: 1; |
| | transform: translateY(0); |
| | } |
| |
|
| | |
| | .footer { |
| | text-align: center; |
| | padding: 20px; |
| | background: black; |
| | border-top: 1px solid white; |
| | position: relative; |
| | margin-top: 20px; |
| | } |
| |
|