* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

html {
    scroll-behavior: smooth;
}

:root {
    --NormalText-color: #7a1a8e;
    --ImportantText-color: #39FF14;
    --descriptionText-color: #a726c1;
}

.sec {
    position: relative;
    background-color: #111;
    min-height: 100vh;
}

.star {
    position: absolute;
    color: #ffffff;
    display: inline-block;
    z-index: 0;
    transition: 1s;
}

.star::before {
    content: '\f005';
    font-family: fontAwesome;
}

.star.animate {
    color: #dadada;
    text-shadow: 0 0 5px #dadada,
    0 0 20px #dadada,
    0 0 50px #dadada;
}

.hea {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    height: auto;
    position: sticky;
    top: 0;
    background-color: rgba(51, 51, 51, 0.9);
    box-shadow: 0 0 20px 10px rgba(51, 51, 51, 0.9);
    -webkit-backdrop-filter: blur(1.5px); 
    backdrop-filter: blur(1.5px);
    width: 100%;
    z-index: 3;
}

.first-line {
    display: flex;
}

.logo {
    display: inline-block;
    height: auto;
    padding: 10px;
}

.navigation {
    display: inline-block;
    height: auto;
    padding: 10px;
    width: 100%;
}

.listitems, .listitems-phone {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    height: 100%;
    font-size: 20px;
    font-weight: 600;
    gap: 30px;
}

.listitems-phone li {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
    border-bottom: 3px solid var(--NormalText-color);
}

.listitems li a, .listitems-phone li a {
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    color: var(--NormalText-color);
    font-weight: 600;
    transition: 1s;
    text-shadow: rgb(0, 0, 0) 3px 0px 0px,
                 rgb(0, 0, 0) 2.83487px 0.981584px 0px,
                 rgb(0, 0, 0) 2.35766px 1.85511px 0px, 
                 rgb(0, 0, 0) 1.62091px 2.52441px 0px,
                 rgb(0, 0, 0) 0.705713px 2.91581px 0px,
                 rgb(0, 0, 0) -0.287171px 2.98622px 0px,
                 rgb(0, 0, 0) -1.24844px 2.72789px 0px,
                 rgb(0, 0, 0) -2.07227px 2.16926px 0px,
                 rgb(0, 0, 0) -2.66798px 1.37182px 0px,
                 rgb(0, 0, 0) -2.96998px 0.42336px 0px,
                 rgb(0, 0, 0) -2.94502px -0.571704px 0px,
                 rgb(0, 0, 0) -2.59586px -1.50383px 0px,
                 rgb(0, 0, 0) -1.96093px -2.27041px 0px,
                 rgb(0, 0, 0) -1.11013px -2.78704px 0px,
                 rgb(0, 0, 0) -0.137119px -2.99686px 0px,
                 rgb(0, 0, 0) 0.850987px -2.87677px 0px,
                 rgb(0, 0, 0) 1.74541px -2.43999px 0px,
                 rgb(0, 0, 0) 2.44769px -1.73459px 0px,
                 rgb(0, 0, 0) 2.88051px -0.838247px 0px;
}

.listitems li a:hover {
    font-weight: 700;
    text-shadow: 0 0 5px #dadada,
    0 0 20px #dadada,
    0 0 50px #dadada;
    border-bottom: 3px solid var(--NormalText-color);
}

.active {
    color: var(--ImportantText-color) !important;
    border-bottom: 3px solid var(--ImportantText-color);
}

#menu-icon {
    display: none;
    color: var(--NormalText-color);
    cursor: pointer;
    font-size: 2.6rem;
}

.bx {
    font-family: boxicons;
}

.navigation-phone {
    display: none;
}

#home {
    display: flex;
    height: 80vh;
    width: 100%;
}

.earth-icon {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 50%;
    height: 100%;
    z-index: 1;
}

.earth {
    position: relative; 
    overflow: hidden; 
    animation: rotateEarth 100s linear infinite;
    box-shadow: 0px 0px 150px 5px #fff;
    background-size: 1280px, auto 300px; 
    min-width: 200px;
    min-height: 200px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-position: 0px, 0px 0px;
    z-index: 1; 
    background-image: radial-gradient(#0ff5, #000), url('../img/earth.png');
}

.earth::before {
    position: absolute;
    pointer-events: none;
    content: "";
    filter: blur(5px); 
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    border-radius: 50%; 
    z-index: 2;  
    background: radial-gradient(circle at 30% 50%, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0) 90%);
}

.preview {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 30px;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.preview-container {
    height: auto;
    width: 80%;
    -webkit-backdrop-filter: blur(1.5px);
    backdrop-filter: blur(1.5px); 
}

.preview-container h1 {
    font-family: 'Poppins', sans-serif;
    color: var(--NormalText-color);
    font-size: 6rem;
    font-weight: 700;
    line-height: 1.3;
    text-shadow: rgb(0, 0, 0) 3px 0px 0px,
    rgb(0, 0, 0) 2.83487px 0.981584px 0px,
    rgb(0, 0, 0) 2.35766px 1.85511px 0px, 
    rgb(0, 0, 0) 1.62091px 2.52441px 0px,
    rgb(0, 0, 0) 0.705713px 2.91581px 0px,
    rgb(0, 0, 0) -0.287171px 2.98622px 0px,
    rgb(0, 0, 0) -1.24844px 2.72789px 0px,
    rgb(0, 0, 0) -2.07227px 2.16926px 0px,
    rgb(0, 0, 0) -2.66798px 1.37182px 0px,
    rgb(0, 0, 0) -2.96998px 0.42336px 0px,
    rgb(0, 0, 0) -2.94502px -0.571704px 0px,
    rgb(0, 0, 0) -2.59586px -1.50383px 0px,
    rgb(0, 0, 0) -1.96093px -2.27041px 0px,
    rgb(0, 0, 0) -1.11013px -2.78704px 0px,
    rgb(0, 0, 0) -0.137119px -2.99686px 0px,
    rgb(0, 0, 0) 0.850987px -2.87677px 0px,
    rgb(0, 0, 0) 1.74541px -2.43999px 0px,
    rgb(0, 0, 0) 2.44769px -1.73459px 0px,
    rgb(0, 0, 0) 2.88051px -0.838247px 0px;
}

.preview-container h1 span {
    font-family: 'Poppins', sans-serif;
    color: var(--ImportantText-color);
}

.preview-container h3 {
    font-family: 'Poppins', sans-serif;
    color: var(--NormalText-color);
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    text-shadow: rgb(0, 0, 0) 3px 0px 0px,
    rgb(0, 0, 0) 2.83487px 0.981584px 0px,
    rgb(0, 0, 0) 2.35766px 1.85511px 0px, 
    rgb(0, 0, 0) 1.62091px 2.52441px 0px,
    rgb(0, 0, 0) 0.705713px 2.91581px 0px,
    rgb(0, 0, 0) -0.287171px 2.98622px 0px,
    rgb(0, 0, 0) -1.24844px 2.72789px 0px,
    rgb(0, 0, 0) -2.07227px 2.16926px 0px,
    rgb(0, 0, 0) -2.66798px 1.37182px 0px,
    rgb(0, 0, 0) -2.96998px 0.42336px 0px,
    rgb(0, 0, 0) -2.94502px -0.571704px 0px,
    rgb(0, 0, 0) -2.59586px -1.50383px 0px,
    rgb(0, 0, 0) -1.96093px -2.27041px 0px,
    rgb(0, 0, 0) -1.11013px -2.78704px 0px,
    rgb(0, 0, 0) -0.137119px -2.99686px 0px,
    rgb(0, 0, 0) 0.850987px -2.87677px 0px,
    rgb(0, 0, 0) 1.74541px -2.43999px 0px,
    rgb(0, 0, 0) 2.44769px -1.73459px 0px,
    rgb(0, 0, 0) 2.88051px -0.838247px 0px;
}

.preview-container h3 span{
    font-family: 'Poppins', sans-serif;
    position: relative;
    color: var(--ImportantText-color);
    animation: words 20s infinite;
    left: 16px;
    font-size: 3.5rem;
    font-weight: 600;
    min-width: 280px;
    text-shadow: rgb(0, 0, 0) 3px 0px 0px,
    rgb(0, 0, 0) 2.83487px 0.981584px 0px,
    rgb(0, 0, 0) 2.35766px 1.85511px 0px, 
    rgb(0, 0, 0) 1.62091px 2.52441px 0px,
    rgb(0, 0, 0) 0.705713px 2.91581px 0px,
    rgb(0, 0, 0) -0.287171px 2.98622px 0px,
    rgb(0, 0, 0) -1.24844px 2.72789px 0px,
    rgb(0, 0, 0) -2.07227px 2.16926px 0px,
    rgb(0, 0, 0) -2.66798px 1.37182px 0px,
    rgb(0, 0, 0) -2.96998px 0.42336px 0px,
    rgb(0, 0, 0) -2.94502px -0.571704px 0px,
    rgb(0, 0, 0) -2.59586px -1.50383px 0px,
    rgb(0, 0, 0) -1.96093px -2.27041px 0px,
    rgb(0, 0, 0) -1.11013px -2.78704px 0px,
    rgb(0, 0, 0) -0.137119px -2.99686px 0px,
    rgb(0, 0, 0) 0.850987px -2.87677px 0px,
    rgb(0, 0, 0) 1.74541px -2.43999px 0px,
    rgb(0, 0, 0) 2.44769px -1.73459px 0px,
    rgb(0, 0, 0) 2.88051px -0.838247px 0px;
}

.preview-container h3 span::after{
    background-color: var(--ImportantText-color);
    position: absolute;
    animation: blink 0.6s infinite;
    border-left: 3px solid black;
    content: "";
    width: 5px;
    height: 100%;
    right: -8;
}

.preview-container p{
    color: #A4BFCB;
    font-family: Consolas, "Courier New", monospace;
    text-align: justify;
    font-size: 19px;
}

.social-icons a, .social-icons2 a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    border: 0.2rem solid #A4BFCB;
    transition: 0.3s ease;
    font-size: 2rem;
    border-radius: 50%;
    width: 4rem;
    height: 4rem;
    text-decoration: none;
}

.bx {
    color: #C07F6C;
}

.social-icons a:hover, .social-icons2 a:hover {
    color: black;
    text-shadow: none;
    transform: scale(1.3) translateY(-5px);
    background-color: #2A3442;
    box-shadow: 0 0 25px #2A3442;
}

.sun, .sun2 {
    background-image: url(../img/sun.jpg);
    background-size: 300px, auto 300px; 
    box-shadow: 0px 0px 150px 5px #ec7b01;
    width: 430px;
    height: 430px;
    border-radius: 50%;
    background-position: 0px, 0px 0px;
    z-index: 1;
}

.sun2 {
    display: none;
}

.logo-button {
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    color: var(--NormalText-color);
    font-size: 2rem;
    font-weight: 600;
    transition: 1s;
    text-shadow: rgb(0, 0, 0) 3px 0px 0px,
                 rgb(0, 0, 0) 2.83487px 0.981584px 0px,
                 rgb(0, 0, 0) 2.35766px 1.85511px 0px, 
                 rgb(0, 0, 0) 1.62091px 2.52441px 0px,
                 rgb(0, 0, 0) 0.705713px 2.91581px 0px,
                 rgb(0, 0, 0) -0.287171px 2.98622px 0px,
                 rgb(0, 0, 0) -1.24844px 2.72789px 0px,
                 rgb(0, 0, 0) -2.07227px 2.16926px 0px,
                 rgb(0, 0, 0) -2.66798px 1.37182px 0px,
                 rgb(0, 0, 0) -2.96998px 0.42336px 0px,
                 rgb(0, 0, 0) -2.94502px -0.571704px 0px,
                 rgb(0, 0, 0) -2.59586px -1.50383px 0px,
                 rgb(0, 0, 0) -1.96093px -2.27041px 0px,
                 rgb(0, 0, 0) -1.11013px -2.78704px 0px,
                 rgb(0, 0, 0) -0.137119px -2.99686px 0px,
                 rgb(0, 0, 0) 0.850987px -2.87677px 0px,
                 rgb(0, 0, 0) 1.74541px -2.43999px 0px,
                 rgb(0, 0, 0) 2.44769px -1.73459px 0px,
                 rgb(0, 0, 0) 2.88051px -0.838247px 0px;
}

.logo-button:hover {
    font-weight: 700;
    text-shadow: 0 0 5px #dadada,
    0 0 20px #dadada,
    0 0 50px #dadada;
}

#about {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    height: auto;
    width: 90%;
    z-index: 2;
    margin-top: 15vh;
    margin-left: 5%;
    margin-right: 5%;
    padding-bottom: 2%;
    -webkit-backdrop-filter: blur(1.5px); 
    backdrop-filter: blur(1.5px); 
    background-color: rgba(51, 51, 51, 0.7);
    box-shadow: 0 0 20px 10px rgba(51, 51, 51, 0.7);
}

.section-tag {
    font-size: 3rem;
    font-weight: bold;
    font-style: 'Poppins', sans-serif;
    color: var(--NormalText-color);
    text-shadow:rgb(0, 0, 0) 3px 0px 0px,
                rgb(0, 0, 0) 2.83487px 0.981584px 0px,
                rgb(0, 0, 0) 2.35766px 1.85511px 0px, 
                rgb(0, 0, 0) 1.62091px 2.52441px 0px,
                rgb(0, 0, 0) 0.705713px 2.91581px 0px,
                rgb(0, 0, 0) -0.287171px 2.98622px 0px,
                rgb(0, 0, 0) -1.24844px 2.72789px 0px,
                rgb(0, 0, 0) -2.07227px 2.16926px 0px,
                rgb(0, 0, 0) -2.66798px 1.37182px 0px,
                rgb(0, 0, 0) -2.96998px 0.42336px 0px,
                rgb(0, 0, 0) -2.94502px -0.571704px 0px,
                rgb(0, 0, 0) -2.59586px -1.50383px 0px,
                rgb(0, 0, 0) -1.96093px -2.27041px 0px,
                rgb(0, 0, 0) -1.11013px -2.78704px 0px,
                rgb(0, 0, 0) -0.137119px -2.99686px 0px,
                rgb(0, 0, 0) 0.850987px -2.87677px 0px,
                rgb(0, 0, 0) 1.74541px -2.43999px 0px,
                rgb(0, 0, 0) 2.44769px -1.73459px 0px,
                rgb(0, 0, 0) 2.88051px -0.838247px 0px;
}

.info {
    display: flex;
    flex-direction: column;
    height: auto;
    width: 90%;
    margin-left: 5%;
    margin-right: 5%;
}

.info-child {
    margin-top: 5vh;
    width: 100%;
    height: 70%;
    display: flex;
}

.image {
    width: 35%;
    height: 600px;
    background-image: url(../img/server_room.jpeg);
    background-position: 0px, 0px 0px;
    background-repeat: no-repeat;
    background-size: cover;
}

.info-about-me {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 65%;
    padding: 20px;
}

.person-description {
    color: #A4BFCB;
    font-family: Consolas, "Courier New", monospace;
    text-align: justify;
    font-size: 17px;
}   

.skill-description {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.skill-description-child {
    display: flex;
    align-items: center;
    gap: 10px;
}

.skill-description-child p {
    min-width: 100px;
    color: var(--ImportantText-color);
    font-family: 'Poppins', sans-serif;
}

.linebar1, .linebar2, .linebar3, .linebar4, .linebar5 {
    border-radius: 50px; 
    height: 10px;
    background: linear-gradient(to right, #a726c1, #39FF14);
}

.linebar1 {
    width: 80%;
}

.linebar2 {
    width: 60%;
}

.linebar3 {
    width: 70%;
}

.linebar4 {
    width: 75%;
}

.linebar5 {
    width: 50%;
}

.lines-person {
    display: flex;
    background-color: #212121;
    border-radius: 20px;
    line-height: 1.2;
    padding: 20px;
    gap: 10px;
    width: 100%;
}

.number-lines, .number-lines2, .number-lines4 {
    color: #2A3442;
    font-family: Consolas, "Courier New", monospace;
    text-align: justify;
    font-size: 17px;
}

.number-lines2 {
    line-height: 1.2;
}

.var {
    color: #B9ADFF;
}

.var-number {
    color: #C07F6C;
}

.var-text {
    color: #A6D27A;
}

#projects {
    position: relative;
    margin-top: 15vh;
    margin-left: 3%;
    margin-right: 3%;
    padding: 2%;
    background-color: rgba(51, 51, 51, 0.7);
    box-shadow: 0 0 20px 10px rgba(51, 51, 51, 0.7);
    -webkit-backdrop-filter: blur(1.5px); 
    backdrop-filter: blur(1.5px); 
    z-index: 2;
}

.projects-box {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    place-items: center;
    gap: 3rem;
    row-gap: 5rem;
    margin-top: 2rem;
}

.projects-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: #272626;
    border: 2px solid #39FF14;
    border-radius: 3rem;
    gap: 2rem;
    padding: 4rem 1rem;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0px 0px 5px #39FF14;
    transition: 0.3s ease;
    min-height: 672px;
}

.projects-card:hover {
    box-shadow: 0px 0px 25px #39FF14
                0px 0px 50px #39FF14;
    transform: scale(1.02);
}

.projects-card img {
    max-width: 400px;
    min-width: 400px;
    max-height: 150px;
    border-radius: 2em;
    object-fit: cover;
}

.projects-card p {
    text-align: justify;
    font-size: 17px;
    color: #A4BFCB;
    height: 204px;
}

.header {
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn {
    display: inline-block;
    padding: 1rem 3rem;
    background-color: #39FF14;
    box-shadow: 0 0 25px #39FF14;
    border-radius: 3rem;
    font-size: 1.5rem;
    color: black;
    border: 2px solid transparent;
    font-weight: 600;
    transition: 0.3s ease-in-out;
}

.btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px #39FF14,
                0 0 50px #39FF14;
}

.projects-card-child {
    display: flex;
    overflow-y: auto;
    gap: 10px;
    background-color: #212121;
    padding: 10px;
    border-radius: 20px;
    line-height: 1.2;
}

.project-description {
    line-height: 1.2;
    font-family: Consolas, "Courier New", monospace;
}

.no-justify {
    display: inline-block;
    text-align: left;
}

#contact {
    position: relative;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 15vh;
    width: 100%;
    z-index: 2;
}

#contact h2 {
    font-size: 40px;
    color: var(--NormalText-color);
    text-align: center;
    margin-bottom: 10px;
    text-shadow:rgb(0, 0, 0) 3px 0px 0px,
                rgb(0, 0, 0) 2.83487px 0.981584px 0px,
                rgb(0, 0, 0) 2.35766px 1.85511px 0px, 
                rgb(0, 0, 0) 1.62091px 2.52441px 0px,
                rgb(0, 0, 0) 0.705713px 2.91581px 0px,
                rgb(0, 0, 0) -0.287171px 2.98622px 0px,
                rgb(0, 0, 0) -1.24844px 2.72789px 0px,
                rgb(0, 0, 0) -2.07227px 2.16926px 0px,
                rgb(0, 0, 0) -2.66798px 1.37182px 0px,
                rgb(0, 0, 0) -2.96998px 0.42336px 0px,
                rgb(0, 0, 0) -2.94502px -0.571704px 0px,
                rgb(0, 0, 0) -2.59586px -1.50383px 0px,
                rgb(0, 0, 0) -1.96093px -2.27041px 0px,
                rgb(0, 0, 0) -1.11013px -2.78704px 0px,
                rgb(0, 0, 0) -0.137119px -2.99686px 0px,
                rgb(0, 0, 0) 0.850987px -2.87677px 0px,
                rgb(0, 0, 0) 1.74541px -2.43999px 0px,
                rgb(0, 0, 0) 2.44769px -1.73459px 0px,
                rgb(0, 0, 0) 2.88051px -0.838247px 0px;
}

#contact form {
    width: 600px;
    text-align: center;
}

form .input-box {
    display: flex;
    justify-content: space-between;
}

.input-box .input-field {
    width: 48.5%;
}

.field .item {
    width: 100%;
    padding-top: 18px;
    padding-left: 5px;
    padding-bottom: 18px;
    padding-right: 18px;
    background: transparent;
    border: 0px;
    outline: none;
    border-radius: 6px;
    font-size: 16px;
    color: #A4BFCB;
    margin: 12px 0;
    line-height: 1.2;
    border: 2px solid var(--ImportantText-color);
}

.field .item::placeholder {
    color: rgba(255, 255, 255, .3);
}

.field .error-txt {
    font-size: 14.5px;
    color: #d93025;
    text-align: left;
    margin: -5px 0 10px;
    display: none;
}

form .textarea-field .item {
    resize: none;
    border: 0px;
    padding-top: 9px;
    margin-top: 6px;
}

form .textarea-field .error-txt {
    margin-top: 5px;
}

form button {
    padding: 12px 32px;
    background-color: var(--ImportantText-color);
    border: none;
    outline: none;
    border-radius: 6px;
    box-shadow: 0 0 10px var(--ImportantText-color);
    font-size: 16px;
    color: #333;
    letter-spacing: 1px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 20px;
    transition: .5s;
}

form button:hover {
    box-shadow: none;
}

.contact-child {
    background-color: #212121;
    box-shadow: 0 0 20px 10px rgba(51, 51, 51, 0.7);
    padding: 20px;
}

#footer {
    width: 100%;
    height: auto;
    background-color: #212121;
    box-shadow: 0 0 20px 10px #212121;
    margin-top: 15vh;
    position: relative;
    z-index: 1;
}

.copy-right {
    font-size: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    width: 100%;
    color: #A4BFCB;
    font-family: Consolas, "Courier New", monospace;
}

.foot-nav {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-direction: row;
    width: 100%;
    padding: 20px;
}

.foot-follow-me .follow-me-text, .foot-contact .foot-contact-text  {
    display: flex;
    justify-content: center;
    color: var(--NormalText-color);
    font-size: 26px;
    font-weight: 600;
    text-shadow:rgb(0, 0, 0) 3px 0px 0px,
                rgb(0, 0, 0) 2.83487px 0.981584px 0px,
                rgb(0, 0, 0) 2.35766px 1.85511px 0px, 
                rgb(0, 0, 0) 1.62091px 2.52441px 0px,
                rgb(0, 0, 0) 0.705713px 2.91581px 0px,
                rgb(0, 0, 0) -0.287171px 2.98622px 0px,
                rgb(0, 0, 0) -1.24844px 2.72789px 0px,
                rgb(0, 0, 0) -2.07227px 2.16926px 0px,
                rgb(0, 0, 0) -2.66798px 1.37182px 0px,
                rgb(0, 0, 0) -2.96998px 0.42336px 0px,
                rgb(0, 0, 0) -2.94502px -0.571704px 0px,
                rgb(0, 0, 0) -2.59586px -1.50383px 0px,
                rgb(0, 0, 0) -1.96093px -2.27041px 0px,
                rgb(0, 0, 0) -1.11013px -2.78704px 0px,
                rgb(0, 0, 0) -0.137119px -2.99686px 0px,
                rgb(0, 0, 0) 0.850987px -2.87677px 0px,
                rgb(0, 0, 0) 1.74541px -2.43999px 0px,
                rgb(0, 0, 0) 2.44769px -1.73459px 0px,
                rgb(0, 0, 0) 2.88051px -0.838247px 0px;
}

.follow-me-links ul, .contact-informations ul {
    display: flex;
    gap: 30px;
}

.follow-me-links ul li, .contact-informations ul li {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    list-style-type: none;
    color: #A4BFCB;
    font-family: Consolas, "Courier New", monospace;
}

.follow-me-links ul li a, .contact-informations ul li a {
    font-size: 16px;
    text-decoration: none;
    color: #A4BFCB;
    transition: 0.3s;
}

.follow-me-links ul li a:hover, .contact-informations ul li a:hover {
    font-weight: 700;
    text-shadow: 0 0 5px #dadada,
    0 0 20px #dadada,
    0 0 50px #dadada;
}

.foot-follow-me, .foot-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.container {
    display: flex;
    gap: 10px;
    border: 2px solid #39FF14;
    height: 268px;
    overflow: auto;
    line-height: 1.2;
}

.number-lines3 {
    margin-top: 6px;
    margin-left: 5px;
    padding-top: 9px;
    display: flex;
    flex-direction: column;
    font-size: 16px;
    color: #2A3442;
    line-height: 1.2;
    margin-bottom: 12px;
    padding-bottom: 18px;
}

.social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    gap: 20px;
    padding: 20px;
    border-radius: 20px;
    background-color: #212121;
}

.social-icons2 {
    display: none;
}

.home-number {
    display: flex;
    line-height: 1.5; 
    background-color: #212121; 
    border-radius: 20px; 
    gap: 15px; 
    padding: 10px;
}

.number-lines4 {
    line-height: 1.5;
    font-size: 19px;
}

.download-link, .download-link2 {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

.download-link2 {
    display: none;
    padding-top: 10px;
    padding-left: 0px;
}
.download-link-child {
    white-space: nowrap;
    font-size: 20px;
    text-decoration: none;
    color: #A4BFCB;
    background: #212121;
    padding: 10px;
    border-radius: 20px;
    display: inline-block;
    position: relative;
    overflow: hidden;
    transition: color 0.3s ease-in-out; /* Płynna zmiana koloru tekstu */
    font-family: Consolas, "Courier New", monospace;
    border: 2px solid black;
}

.download-link-child:hover {
    background-color: #2A3442;
    box-shadow: 0 0 25px #2A3442;
    color: #C07F6C; /* Kolor tekstu zmienia się */
}

.email-information {
    font-size: 13px;
}
@media screen and (max-width: 1300px){
    .preview-container h1 {
        font-size: 3.9rem;
    }

    .preview-container h3 {
        font-size: 1.7rem;
    }

    .preview-container h3 span {
        font-size: 1.7rem;
    }

    .sun {
        width: 400px;
        height: 400px;
    }
    .preview-container p {
        font-size: 19px;
    }

    .social-icons a, .social-icons2 a {
        width: 4rem;
        height: 4rem;
        font-size: 1.8rem;
    }

    .foot-nav {
        gap: 30px;
        flex-direction: column;
    }

    .follow-me-links ul, .contact-informations ul {
        flex-direction: column;
    }

    .copy-right {
        font-size: 14px;
    }
}


@media screen and (max-width: 930px) {
    .sun {
        width: 300px;
        height: 300px;
    }
}

@media screen and (max-width: 830px){
    .listitems {
        display: none;
    }

    .navigation {
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }

    #menu-icon {
        display: block;
    }

    .navigation-phone {
        position: absolute;
        display: flex;
        height: auto;
        color: var(--NormalText-color);
        transition: .25s ease;
        top: 100%;
        width: 100%;
        left: 0%;
        z-index: 1;
        transition-delay: .25s;
        background-color: rgba(51, 51, 51, 0.9);
        box-shadow: 0 0 20px 10px rgba(51, 51, 51, 0.9);
    }

    .hidden {
        left: -100%;
        transition-delay: 0s;
    }

    .listitems-phone {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }

    #home {
        height: auto;
        flex-direction: column;
    }

    .preview-container h1 {
        font-size: 2.9rem;
    }

    .preview-container h3 {
        font-size: 1.4rem;
    }

    .preview-container h3 span{
        font-size: 1.4rem;
    }

    .preview-container p{
        font-size: 18px;
    }

    .social-icons a, .social-icons2 a {
        width: 4rem;
        height: 4rem;
        font-size: 1.9rem;
    }

    .earth-icon {
        width: 100%;
    }

    .preview-container {
        width: 90%;
    }

    .earth {
        width: 100px;
        height: 100px;
        min-width: 100px;
        min-height: 100px;
    }

    .active {
        border-bottom: none;
    }

    .hamburger {
        text-shadow: rgb(0, 0, 0) 3px 0px 0px,
                     rgb(0, 0, 0) 2.83487px 0.981584px 0px,
                     rgb(0, 0, 0) 2.35766px 1.85511px 0px, 
                     rgb(0, 0, 0) 1.62091px 2.52441px 0px,
                     rgb(0, 0, 0) 0.705713px 2.91581px 0px,
                     rgb(0, 0, 0) -0.287171px 2.98622px 0px,
                     rgb(0, 0, 0) -1.24844px 2.72789px 0px,
                     rgb(0, 0, 0) -2.07227px 2.16926px 0px,
                     rgb(0, 0, 0) -2.66798px 1.37182px 0px,
                     rgb(0, 0, 0) -2.96998px 0.42336px 0px,
                     rgb(0, 0, 0) -2.94502px -0.571704px 0px,
                     rgb(0, 0, 0) -2.59586px -1.50383px 0px,
                     rgb(0, 0, 0) -1.96093px -2.27041px 0px,
                     rgb(0, 0, 0) -1.11013px -2.78704px 0px,
                     rgb(0, 0, 0) -0.137119px -2.99686px 0px,
                     rgb(0, 0, 0) 0.850987px -2.87677px 0px,
                     rgb(0, 0, 0) 1.74541px -2.43999px 0px,
                     rgb(0, 0, 0) 2.44769px -1.73459px 0px,
                     rgb(0, 0, 0) 2.88051px -0.838247px 0px;
    }

    .sun {
        display: none;
    }

    .image {
        display: none;
    }

    .info-about-me {
        width: 100%;
        padding: 0px;
    }

    .person-description {
        padding: 0px;
    }

    .years-project-happy {
        gap: 1rem;
    }

    .number {
        font-size: 3rem;
        min-width: 80px;
    }

    .number-description {
        font-size: 0.7rem;
    }

    #about {
        margin-top: 15vh;
        width: 95%;
        margin-left: 2.5%;
        margin-right: 2.5%;
    }

    .info {
        width: 100%;
        margin-right: 0px;
        margin-left: 0px;
    }

    .projects-card {
        max-width: 300px;
    }

    .projects-card img {
        min-width: 250px;
        max-width: 250px;
        max-height: 150px;
    }

    #projects {
        margin-right: 0%;
        margin-left: 0%;
    }

    .contact-child {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        width: 100%;
    }

    #contact form {
        width: 90%;
    }

    form .input-box {
        width: auto;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .input-box .input-field {
        width: 100%;
    }

    .copy-right {
        font-size: 10px;
    }

    .sun2 {
        display: flex;
        width: 200px;
        height: 200px;
    }

    .social-icons2 {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 10px;
        gap: 20px;
        padding: 20px;
        border-radius: 20px;
        background-color: #212121;
    }

    .social-icons {
        display: none;
    }

    .number-lines4 {
        font-size: 18px;
    }

    .download-link {
        display: none;
    }

    .download-link2 {
        display: block;
    }

    .download-link-child {
        padding: 15px;
    }
}

@keyframes rotateEarth {
    100% {
        background-position: -600px 0px;
    }
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}