@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

html {
  scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    background-color: #1f1f1f;
    color: white;
    font-family: Poppins,sans-serif;
    font-weight: 500;
    background-image: linear-gradient(to right bottom, #1a3742, #133241, #0d2d40, #0c273f, #0e213c, #101e3b, #121b39, #151837, #151837, #151837, #151837, #151837);

}

p {
}


.divider {
    background-color: rgba(56, 240, 136, 1);
}

nav {
    list-style-type: none;
}

header {
    box-sizing: border-box;
    position: fixed;
    top: 0;
    margin: 0;
    height: 80px;
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
    padding: 25px 100px 25px 35px;
}

#links {
    display: flex;
    gap: 50px;
    list-style: none;
    /* align-items: center; */
    /* margin: 0; */
    /* padding: 0; */
}

ul li a {
    font-size: 18px;
    color: white;
    opacity: 0.7;
    transition: 0.25s ease-in-out;
}

a {
    text-decoration: none;
}

ul li a:hover {
    opacity: 1;
    color: rgba(56, 240, 136, 1);
}

#home {
    justify-content: center;

    /* background-color: #050816; */
    /* background-image: linear-gradient(to left bottom, #151837, #0e213c, #0c2940, #103041, #1a3742); */
    /* background-image: linear-gradient(to right bottom, #5eead4, #00dee5, #00d0f4, #00c0fe, #00adff, #44a4ff, #6a99ff, #8b8cf9, #928cf9, #998cfa, #a08bfa, #a78bfa); */
    /* background-image: 'linear-gradient(90deg, var(--ghost-from, #5eead4), var(--ghost-via, #818cf8), var(--ghost-to, #a78bfa))',; */
}

#projects {
    /* background-color: #0e1730; */
}

#logo {
    /* margin-bottom: 2.5px;
    margin-left: 20px; */
    /* margin-right: auto; */
    /* padding: 10px; */
    font-size: 32px;
    font-weight: bold;
    /* text-decoration: none; */
    /* color: rgba(56, 240, 136, 1); */
    /* transition: 0.25s ease-in-out; */
}

#logo:hover {
    /* background-color: white; */
    /* color: black; */
    /* text-shadow: 0 0 4px rgba(56, 240, 136, 0.9); */
    /* transform: scale(1.05); */
}

.main {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* text-align: center; */
}

button {
    /* margin-top: 25px; */
    padding: 15px 60px;
    font-size: 18px;
    font-weight: 600;
    color: white;
    border-color:  rgba(56, 240, 136, 1);
    border-width: 2px;
    background-color: transparent;
    /* background-color: rgba(56, 240, 136, 1); */
    border-radius: 5px;
    cursor: pointer;
    transition: 0.25s ease-in-out;
}

button::after { /* Down Arrow icon */
    content: '^';
    color: rgba(56, 240, 136, 1);

}

button:hover {
    background-color: rgba(56, 240, 136, 1);
    color: white;
    transform: scale(1.05);
}

#socials {
    position: fixed;
    bottom: 5%;
    left: 2.5%;
    /* transform: translateY(-50%); */
    display: flex;
    flex-direction: row;
    gap: 20px;
}

#socials a img {
    width: 35px;
    height: 35px;
    /* filter: invert(1); */
    transition: 0.25s ease-in-out;
}

#socials a img:hover {
    transform: translateY(-5px);
    /* filter: brightness(50%) saturate(100%) */
    /* filter: brightness(0%) saturate(500%) invert(81%) sepia(56%) saturate(597%) hue-rotate(77deg) brightness(98%) contrast(92%); */
}

#scroll-bar {
    position: fixed;
    /* right: 5%; */
    /* bottom: 5%; */
    /* width: 3px; */
    padding: 0;
    height: 3px;
    background-color: rgba(56, 240, 136, 1);
    animation: scrollAnim 2s ease-in-out infinite;
}

.title {
    display: block;
    font-size: 64px;
    font-weight: bold;
    opacity: 0;
    margin-bottom: 10px;
    transform: translateY(60px);
}

.fadeInUp {
    animation: fadeInUp 1.25s ease-in-out forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


#subtitle {
    /* display: block; */
    /* display: flex; */
    text-align: left;
    margin-top: 10px;
    font-size: 28px;
    min-height: 50px;
    width: fit-content;
    /* opacity: 0.8; */
    /* font-weight: bold; */
    color: rgba(56, 240, 136, 1);
    /* animation: fadeInUp 1s ease-in-out forwards; */
}

#subtitle span {
    color: black;
    animation: fadeInUp 1s ease-in-out forwards;
    
    /* color: rgba(56, 240, 136, 1); */
}

#cursor {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    margin-left: 5px;
    font-size: 28px;
    font-weight: bold;
    opacity: 0;
    color: white;
    animation: blink 0.75s step-start infinite 0.5s;
}

@keyframes blink {
    50% {
        opacity: 1;
    }
}



section {
    height: 100vh;
    /* padding-top: 60px; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* text-align: center; */
    /* margin: 0;
    padding: 0;
    width: 100%;
    height: 100%; */
}

.parallelogram {

	/* position: relative; */

	top: 518px;

	left: 23%;

	width: 3px; 

	height: 40px; 

	transform: skew(-20deg);

	background-color: #FF0000; 

}


/* #scroll {
    position: fixed;
    right: 5%;
    bottom: 5%;
    width: 25px;
    height: 25px;
    background-color: white;
    opacity: 0.5;
    border-radius: 50px;
    border: none;
    transition: ease-in-out 0.25s;
} */

/* #scroll:hover {
    transform: scale(1.2);
} */