body {
    background-color: #041a45ef;
    color: rgba(238, 238, 238, 0.952);
}

header {
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 0;
}

a {
    text-decoration: none;
    color: rgb(0, 0, 0);
    background-color: rgb(64, 131, 199);
    border: 32px;
    border-radius: 2px ;
}

a:hover {
    background-color: rgb(110, 175, 255);
    transition: all 1s;

}

nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    justify-items: center;
    flex-direction: row;
}

footer {
    display: flex;
    justify-content: center;
}

li {
    display: flex;
    flex-direction: row;
    
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

button {
    background-color: rgb(64, 131, 199);
    border: none;
    width: 120px;
    height: 60px;
}

button:hover {
    background-color: rgb(110, 175, 255);
    transition: all 1s;
}

section {
    height: 100vh;
}

article {
    background-color: #02447a;
    box-shadow: 10px 5px 5px rgb(3, 51, 106);
}

div {
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: start;
    gap: 12px;
}

.div-content {
    align-items: center;
}

.navbar-items {
    display: flex;
    gap: 6px;
}