:root {

    --text-color: #ffffff;
    --link-color: white;
    /*background-color: #FFF2EB;*/
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--background-color);
    background-image: url('galaxy.jpeg');
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
}

a {
    color: var(--link-color);
    text-decoration: none;
}

header {

    height: 100vh;
    text-align: center;
    padding: 60px 20px;
    color: var(--link-color)
   /* background-color: #FFDCDC;*/
    margin-bottom: 20px;
}
header p{
    color: var(--link-color)
}
img{
    margin-top: 100px;
    border-radius: 50%;
}

header h1 {
    font-size: 4rem;
    margin-bottom: 10px;
    color: var(--link-color)
}

/* NAV BAR*/
nav {
    position: fixed;
    display: flex;
    align-items: center;
    padding: 20px;
    height: 60px;
    justify-content: space-between;
    
}
nav .left a{
    color: var(--text-color);
    font-size: 22px;
    font-weight: 600;
}
nav .right a{
    color: var(--text-color);
    margin: 0 10px;
}
nav a {
    color: var(--text-color);
    font-size: 22px;
    font-weight: bold;
}

h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 3rem;
    color: #ffffff;
}

h6 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 3rem;
    color: #ffffff;
}
h4 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.4rem;
    color: #ffffff;
    font-weight: lighter;
}


/*.container{
    padding: 30px 20px;
    max-width:1200px;
    margin: auto;
    background-color: #d3d2d2;
    border-radius: 10px;
}*/
.about {
    margin: 30px;
    /*background-color: #FFE8CD;*/
    padding: 30px;
    border-radius: 5px;
    transition: transform 0.3s ease;
    display: grid;
    gap: 30px;
}
body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
}

.projects {
  text-align: center;
  padding: 50px 20px;
 /* background-color: #f9f9f9;*/
}

.projects h2 {
  font-size: 32px;
  margin-bottom: 40px;
  color: var(--link-color)
}

.project-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}

.project-card {
  /*background: white;*/
  border-radius: 10px;
  width: 300px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  color: var(--link-color)
}

.project-card:hover {
  transform: translateY(-10px);
}

.project-card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 15px;
}

.project-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.project-card p {
  font-size: 14px;
  color: #ffffff;
}
/*
.projects {
    margin: 30px;
    transition: transform 0.3s ease;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.project {
    background-color: #FFE8CD;
    margin: 30px;
    padding: 30px;
    border-radius: 15px;
    transition: transform 0.3s ease;
    margin-bottom: 30px;
}*/

.contact {
    text-align: center;
    margin-top: 5px;
    /*background-color: #FFE8CD;*/
    padding: 5px;
    border-radius: 5px;
    transition: transform 0.3s ease;
    margin-bottom: 30px;

}

footer {
    text-align: center;
    padding: 20px;
    /*background-color: #FFD6BA*/
    color: #ffffff;
}

@media (max-width: 600px) {
    header h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }
}