body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background: url('https://www.transparenttextures.com/patterns/stardust.png') repeat, #0a0a23;
    color: #ffffff;
    line-height: 1.6;
}

header {
    background: rgba(0, 0, 0, 0.7);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
}

#logo-img {
    width: 50px;
    height: 50px;
    margin-right: 1rem;
}

h1 {
    font-size: 1.8rem;
    margin: 0;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav ul li {
    margin-left: 2rem;
}

nav ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #00d4ff;
}

main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

section {
    padding: 1rem 0;
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #00d4ff;
}

p {
    margin: 0;
    font-size: 1.1rem;
}

#credentials {
	text-align: center;
}

#quote {
	font-size: 1.5rem;
}

#author {
	font-size: 1.2rem;
}

.quote-container {
	display: flex;
	flex-direction: row;
	align-items: baseline;
	justify-content: space-between;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.portfolio-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.2rem;
    border-radius: 8px;
    font-size: 1.2rem;
    transition: transform 0.3s;
    text-align: center;
    cursor: pointer;
}

.portfolio-item:hover {
    transform: scale(1.05);
}

footer {
    text-align: center;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.7);
    margin-top: 2rem;
}

a {
    color: white;
    text-decoration: none;
}

p > a:hover {
    text-decoration: underline;
}

@media (max-width: 1200px) {
	header, .quote-container {
		flex-direction: column;
		justify-content: flex-start;
	}
	
	header {
		gap: 5px;
	}
	
	.quote-container {
		gap: 10px;
	}
}
