*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
}



body {

    font-family: "Roboto", sans-serif;
    width: 100%;
    height: 100%;
    align-items: center;
    background-color: #111111;
    color: #ffffff;
}


h1, h2, h3, h4 {
    font-family: "Oswald", sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    width: 100%;
    padding: 80px;
}

.navbar {
    background-color: rgba(17, 17, 17, 0.95);
    height: 100px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #333;
}

.navbar-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.logo {
    border-radius: 10px;
    margin-bottom: 10px;
    margin: 10px;
    width: 5.3rem;
    display: flex;
}


.navbar-links {
    font-weight: 600;
    font-family: "Oswald", sans-serif;
    font-size: 1.2rem;
    text-decoration: none;
    color: #e0e0e0;
    display: flex;
    padding: 1rem;
    text-transform: uppercase;
}
