@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@700&display=swap');



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}
body {
    background-color: rgb(6, 42, 42);

}


header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 2rem auto;
    padding: 0 0.5rem;
    max-width: 1200px;
}

.navigation ul{
display: flex;
list-style-type: none;
gap: 2rem;
}

.navigation a {
    text-decoration: none;
    color: black;
}

.navigation a:hover {
    text-decoration: none;
    color: #00f2ff;
}

hr{
    opacity: 10%;
}



.hero {
display: flex;
justify-content: space-between;
align-items: center;
margin: 5rem auto;
max-width: 1200px;

}


.arrow {
    position: absolute;
    transform: translateX(-5.5rem) translateY(1.5rem);

}


.heroSub {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}


.name {
font-size: 3rem;
color: aqua;
}


.titel {
    font-size: 4rem;
    color: black;

}

.herobtns {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}


.hireMe {
    background-color: aqua;
    color:black; 
    border-radius: 24px;
    text-decoration: none;
    padding: 0.5rem 1.5rem;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.5);
}

