*{
    box-sizing: border-box;
}
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #DFD0B8;
    color: #222831;
    overflow-x: hidden;
}
p,
h1,
h2,
h3,
h4,
h5,
h6,
span,
div {
    word-break: keep-all;
    overflow: break-word;
    white-space: normal;
}
.navbar {
    padding: 0px 13vw 0px 2vw;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    max-height: 15vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
    z-index: 1000;
    backdrop-filter: blur(5px);
    background: #ddd9c3;
    border-bottom: 1px solid #495057;
}
.nav-wrap {
    align-items: center;
    justify-content: space-between;
    padding: 5px 0;
    width: 100%;
    display: flex;
}
.logo {
    flex: 0 0 auto;
}
.logo img {
    min-width: 20vw;
    max-width: 22vw;
}
nav {
    display: flex;
    gap: 15px;
    transition: margin-left 0.8s ease;
    font-size: 22px;
}
nav a {
    text-decoration: none;
    color: black;
    font-weight: 500;
    padding: 8px 10px;
}
nav a:hover {
    background: #212526;
    color: #f8f9fa;
    border-radius: 6px;
    transition: all 0.6s ease;
    transform: scale(1.25);
}
.menu-btn {
    display: none;
}