*{
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    box-sizing: border-box;
}
body{
    width: 100%;
    height: 100vh;
    line-height: 1.6;
    background: linear-gradient(rgb(106, 180, 195),rgb(233, 118, 118));
    color: rgb(151, 68, 13);
    justify-content: center;
    align-items: center;
}
header{
    background: #4caf50;
    padding: 1rem;
    text-align: center;
}
.navbar{
    display: flex;
    justify-content: space-between;
    word-spacing: 30px;
    align-items: center;
    max-width: auto;
    color: rgb(8, 4, 5);
    font-style: italic;
}
.logo{
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    font-style: italic;
    border: #333;
    padding-left: 0ch;
}
nav-links li{
    margin: 0;
    gap: 500px;
}
img{
    width: 230px;
    height: 200px;
    margin-bottom: 50px;
}
Button{
    color: #2a2828;
    border: navy;
    background-color: aqua;
    text-decoration: wavy;
    font-size: 15px;
}