* {
    margin: 0;
    padding: 0;
}

:root {
    --bg-color: #353935;
    --text-color: #f4f4f4;
    --header-bg: #18121b;
    --footer-bg: #202020;
    --link-color: lavender;
    --button-bg: #333;
    --button-text: white;
    --bs-nav-link-color: aliceblue;
}


body {
    font-family: Arial, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    margin: 0;
    padding: 0;
    transition: all 1s ease-out;
}

a{
    color:aliceblue;
    text-decoration:none;
}

.icon {
    height: 4em;
    width: 4em;
}

nav {
    padding: 5px;
    background: #202020
}

nav,
nav div ul{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

li,
li>a {
    list-style: none;
    color: var(--link-color);
    text-decoration: none;
}

nav div ul {
    width: 60vw;
}

.sc {
    display: none;
}
.proj-header {
    display: flex;
    align-items: center;
}

#km {
    margin: 5px;
    padding: 5px;
    background: #1d1a1a;
    color: white;
    border-radius: 5px;
    border: solid #191818
}

#km:hover {
    background: #18121b;
}

section,
ul {
    margin: 5px;
    padding:5px;
}

.sep {
    height: 3px;
    width: 98vw;
    background-color: whitesmoke;
    opacity: 50%;
    margin: auto;
    border-radius: 5px;
}

.msep{
    height: 3px;
    width: 95vw;
    background-color: #202020;
    opacity: 30%;
    margin-top: 5px;
    margin-bottom: 5px;
}
.sl{
    padding:10px;
    margin:3px;
    background:black;
    max-width:fit-content;
    border-radius:5px;
}
.sl:hover{
    background: lavender;
    color: #202020;
}
.sl>a:hover{
    color: #202020;
}


.table {
    max-width: 600px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    grid-auto-rows: minmax(50px, auto);
  }

  .table > div {
    border: 2px solid azure;
    border-radius: 5px;
    background-color:aliceblue;
    padding: 1em;
    color: #202020;
  }
.table a{
    color: blueviolet;
}

.hero-intro {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  background-color: #262626;
  color: #fdfdfd;
}

.intro-container h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.intro-container p {
  font-size: 1.1rem;
  margin: 0.5rem 0;
}

.scroll-down {
  margin-top: 2rem;
  animation: bounce 2s infinite;
  color: #b6d1fc;
}

.scroll-down span {
  display: block;
  font-size: 0.9rem;
  color: #666;
}

.scroll-icon {
  width: 30px;
  margin-top: 0.3rem;
  filter: invert(1);
}

footer {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    width: 100vw;
    background-color: #202020;
}


nav a,
footer a {
    color: lavender;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(8px); }
  60% { transform: translateY(4px); }
}



@media screen and (max-width: 768px) {
    body {
        width: 100%;
        height: 100%;
        overflow-x: hidden;
    }

    .no-phone {
        display: none;
    }

    .sc {
        display: block;
    }

    #toggle-btn {
        background: none;
        color: white;
        border: none;
        font-size: 20px;
        cursor: pointer;
        height: 4em;
        width: 90vw;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    #nav-menu {
        list-style: none;
        padding: 0;
        display: none;
    }

    #nav-menu li {
        padding: 10px;
        background: #444;
    }

    #nav-menu a {
        color: white;
        text-decoration: none;
    }

}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.fade-in {
    animation: fadeIn 2s ease-in;
}

.zoom {
  transition: transform 0.3s ease;
}

.zoom:hover {
  transform: scale(1.50);
}
