*{
    margin: 0;
    padding: 0;
box-sizing: border-box;
scroll-behavior: smooth;
}

body {
background-color: rgb(41, 41, 143);

}

header {
    display: flex;
    justify-content: space-between;
align-items: center;
content: 2rem auto;
max-width: 1200px;}


.navigation a {
    text-decoration: none;
    color: black;
}
.navigation a:hover {
    color: aqua;
}


.hero {
display: flex;
justify-content: space-between;
align-items: center;
margin: 5rem auto;
max-width: 1200;
}

.herosub {
    display: flex;
flex-direction: column;
gap: 0.5rem;
}

.name {
    font-size: 3rem;
    color: aliceblue;
}