@charset "UTF-8";

body {
margin: 0 !important;
background-repeat: no-repeat;
display: flex;
flex-direction: column;
background-color: #070707;
}
body main {
flex: 1;
}
header {
background-color: #070707;
height: 10vh;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
z-index: 99;
}
header .logo {
height: 100%;
}
header .logo img {
width: 100%;
max-height: 100%;
}
@media (max-width: 1024px) {
header {
height: 8vh;
}
}
main {
position: relative;
width: 100%;
height: 100%;
z-index: 1; }
main spline-viewer {
height: 75vh;
}
.site-footer {
color: #ccc;
font-size: 0.9rem;
padding: 0rem 1rem;
}
.site-footer a {
color: #ccc;
text-decoration: none;
font-weight: normal;
}
.site-footer a:hover {
color: #fff;
text-decoration: none;
}
.site-footer p {
margin: 0;
padding: 0;
}
.site-footer .footer-container {
max-width: 1200px;
margin: 0 auto;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 2rem;
align-items: center;
justify-items: center;
text-align: center;
}
.site-footer .footer-menu ul, .site-footer .footer-menu li,
.site-footer .footer-contact ul,
.site-footer .footer-contact li,
.site-footer .footer-social ul,
.site-footer .footer-social li {
list-style: none;
padding: 0;
margin: 0.3rem 0;
}
.site-footer .footer-social a {
margin: 0 0.5rem;
}
.site-footer .footer-bottom {
border-top: 1px solid #333;
padding-top: 0.1rem;
text-align: center;
font-size: 0.8rem;
}
@media (max-width: 1024px) {
.site-footer {
padding: 0.5rem 1rem;
}
.site-footer .footer-container {
gap: 1rem;
grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}
.site-footer .footer-bottom {
font-size: 0.75rem;
}
}
@media (min-width: 1440px) {
.site-footer {
padding: 0.25rem 1rem;
}
.site-footer .footer-container {
gap: 3rem;
}
.site-footer .footer-bottom {
font-size: 0.85rem;
}
}
.post-content {
background-color: #070707;
color: #e0e0e0;
font-family: "Orbitron", "Rajdhani", "Segoe UI", sans-serif;
padding: 2rem;
border: 1px solid #070707;
border-radius: 12px;
box-shadow: 0 0 20px rgba(0, 255, 255, 0.05);
}
.post-content .post-image {
margin-bottom: 1.5rem;
}
.post-content .post-image img {
width: 100%;
height: auto;
border-radius: 8px;
box-shadow: 0 0 12px rgba(0, 255, 255, 0.2);
}
.post-content .post-info {
margin-bottom: 2rem;
}
.post-content .post-info .title h1 {
font-size: 2.2rem;
color: #9f7bff;
margin-bottom: 0.5rem;
letter-spacing: 1px;
text-transform: uppercase;
}
.post-content .post-info .title .title-span {
display: inline-block;
border-bottom: 2px solid #00f5ff;
padding-bottom: 4px;
}
.post-content .post-info p {
font-size: 1rem;
margin: 0.5rem 0;
color: #fafafa;
}
.post-content .post-info p a {
color: #00f5ff;
text-decoration: none;
}
.post-content .post-info p a:hover {
text-shadow: 0 0 5px #00f5ff;
}
.post-content .description {
font-size: 1rem;
line-height: 1.6;
color: #e0e0e0;
}
.post-content .description p {
margin-bottom: 1rem;
}
.portfolio-page {
width: 100%;
height: 100%;
z-index: 1;
}
.access-denied-wrapper {
max-height: 80vh;
display: flex;
justify-content: center;
align-items: center;
background-color: #070707;
color: #0ff;
font-family: "Orbitron", sans-serif;
text-align: center;
padding: 2rem;
}
.access-denied-wrapper h1 {
font-size: 3rem;
letter-spacing: 0.3em;
text-transform: uppercase;
margin-bottom: 1rem;
color: #00fff7;
text-shadow: 0 0 15px #00fff7, 0 0 30px #00fff7;
}
.access-denied-wrapper p {
font-size: 1.5rem;
margin-bottom: 1.5rem;
color: #00d8cc;
text-shadow: 0 0 5px #00d8cc;
}
.access-denied-wrapper .btn-back {
display: inline-block;
padding: 0.75rem 2rem;
border: 2px solid #00fff7;
color: #00fff7;
text-decoration: none;
font-weight: 700;
font-size: 1.1rem;
border-radius: 5px;
transition: all 0.3s ease;
box-shadow: 0 0 10px #00fff7;
}
.access-denied-wrapper .btn-back:hover {
background-color: #00fff7;
color: #0a0a0a;
box-shadow: 0 0 20px #00fff7;
}