* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {

    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-image: linear-gradient(135deg, #f0f8ff,#add8e6);
    position: relative;
}

header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    padding: 10px 80px;
    align-items: center;
    justify-content: center;
    background-color: rgb(114, 11, 11);
}

/* .nav {
    display: flex;
    gap: 40px;
    list-style: none;
    align-items: center;
}

.nav li a {
    display: flex;
    text-decoration: none;
    align-items: center;
    gap: 8px;
    color: white;
    justify-content: space-between;
}

.nav li a:hover {
    color: darkgray;
} */


header .nav {
    display: flex;
    justify-content: center;
    gap: 32px;
    list-style: none;
    padding: 0;
    margin: 0;
}

header .nav li a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 4px;
    transition: background 0.2s;
    text-align: justify;
}

header .nav li a:hover,
header .nav li a:focus {
    background: darkgray;
    color: white;
}