body {
    font-family: 'Orbitron', sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(to bottom, #002900, #05bb05);
    color: #fff;
    overflow-x: hidden;
    overflow: auto;
    line-height: 1.5;
}

h1, h2, p {
    margin: 0;
}

a {
    color: #05bb05;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.header {
    text-align: center;
    padding: 40px 0;
    background: rgba(0, 0, 0, 0.8);
    border-bottom: 2px solid #05bb05;
}

.header h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.header p {
    font-size: 1.2em;
    color: #ccc;
}

.navbar {
    display: flex;
    justify-content: center;
    padding: 10px 0;
    background: rgba(0, 0, 0, 0.9);
    border-bottom: 1px solid #333;
}

.navbar a {
    margin: 0 20px;
    font-size: 1.1em;
    text-transform: uppercase;
}

.navbar a:hover {
    color: #0a820a;
}

section {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 20px auto;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.about, .portfolio, .contact {
    text-align: center;
}

.portfolio-link {
    color: #ccc;
    font-weight: bold;
    display: block;
}

.portfolio-link:hover {
    color: #05bb05;
}

section h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #05bb05;
}

section p {
    font-size: 1.1em;
    color: #ccc;
    line-height: 1.6em;
}

.countdown-box {
   width: 50%;
   position: relative;
   margin: 20px auto;
}

#time {
    font-size: 3.5em;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #333;
    padding: 20px;
    border-radius: 8px;
    outline: 2px solid #05bb05;
    text-wrap: nowrap;
}

.footer {
    text-align: center;
    padding: 15px 0;
    background: rgba(0, 0, 0, 0.9);
    border-top: 2px solid #05bb05;
    font-size: 0.9em;
}

.line-break {
    display: block;
    margin-bottom: 20px;
}

.offline {
    font-family: 'Orbitron', sans-serif;
    margin: 0;
    padding: 0;
    background: #121212;
    color: #fff;
    overflow-x: hidden;
    overflow: auto;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .line-break {
        margin-bottom: 20px;
    }
    .countdown-box {
    	width: 75%;
    	position: relative;
    	margin: 20px auto;
    }
    #time {
	font-size: 1.5em;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #333;
	padding: 20px;
	border-radius: 8px;
	outline: 2px solid #05bb05;
    }
}

::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

::-webkit-scrollbar-corner {
    background: #333;
}

::selection {
  background: #a3bb05;
}