
body {
    margin: 0;
    padding: 0;
    font-family: 'arial';
    background-color: rgb(19, 17, 69);
    height: 2000px;
    
}

header {
    padding: 0.2vw 4vw;
    position: sticky;
    top: 0;
    background-color: rgb(7, 6, 34,30%);
    z-index: 1000;
}

.name {
    color: white;
    font-size: clamp(8px, 1vw, 22px);
    font-family: Arial, sans-serif;
    display: flex;
    align-items: center;
}


.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navigation {
    display: flex;
    align-items: center;
    color: white;
    font-size: clamp(10px, 1.2vw, 22px);
    font-family: 'arial';
    gap: 4vw;

}

header a {
    color: white;
    text-decoration: none;
}


.intro {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 40vw;
    padding: 0 4vw;
    color: white;
    background-color: blue;
    text-align: center;

    background-image: url("https://4kwallpapers.com/images/walls/thumbs_3t/9602.jpg");
    background-size: cover;
}


.intro h2 {
    font-size: clamp(25px, 4.2vw, 50px);

    margin: 0;
    line-height: 1;
}

.projectButton {
    background-color: rgb(153, 166, 228);
    margin-top: 3vw;
    border-radius: clamp(5px, 0.8vw, 12px);
    padding: clamp(7px, 1vw, 14px) clamp(12px, 1.5vw, 20px);
    font-size: clamp(12px, 1.4vw, 18px);
    cursor: pointer;
    color: white;
    text-decoration: none;
    transition: 0.3s ease;
}

.projectDiv {
    margin-top: 3vw;
}

.projectButton:hover {
    background-color: rgb(104, 123, 208);
}

.navigation a {
    text-decoration: none;
}

nav a:hover {
    text-decoration: underline;
}

.aboutMe {
    background-color: rgb(78, 50, 134);
    color: white;
    padding: 4vw;
    margin: clamp(20px, 2vw, 100px);
    border-radius: 1vw;
    transition: 0.3s ease;
    transform: translateY(0);
}

.aboutMe:hover {
    transform: translateY(-5px);
}

.moreAboutMe, 
.moreAboutProjects {
    margin-top: 3vw;
    background-color: rgb(153, 166, 228);
    color: white;
    padding: clamp(8px, 0.5vw, 14px);
    border-radius: clamp(8px, 0.65vw, 12px);
    width: fit-content;
    transition: 0.3s ease;
    max-width: 170px;
}
.moreAboutMe a,
.moreAboutProjects a {
    color: white;
    text-decoration: none;
    padding: 0.5vw;
    font-size: clamp(12px, 1.2vw, 15px);
}


.moreAboutMe:hover , .moreAboutProjects:hover {
    background-color: rgb(104, 123, 208);

}

.experience {
    background-color: rgb(78, 50, 134);
    color: white;
    padding: 4vw;
    margin: clamp(20px, 2vw, 100px);
    border-radius: 1vw;
    transition: 0.3s ease;
}
.experience:hover {
    transform: translateY(-5px);
}

.projectsinfo {
    background-color: rgb(78, 50, 134);
    color: white;
    padding: 4vw;
    margin: clamp(20px, 2vw, 100px);
    border-radius: 1vw;
    transition: 0.3s ease;
}

.projectsinfo:hover {
    transform: translateY(-5px);
    
}