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;
}

header a {
    color: white;
    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);
}


