* {
    box-sizing: border-box;
}

header {
    background: linear-gradient(to right, #5F5F5F, #494949, #333333);
    padding: 10px;
    text-align: center;
    height: 140px;
    border-bottom: 0.5px solid white;
}

.header {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 40px;
    color: white;
    margin: 0;
    padding: 40px;
}

main {
    text-align: center;
    background: linear-gradient(to bottom, #000000, #666666);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    text-transform: uppercase;
    word-spacing: 80px;
}

.nav-links {
    display: flex;
    gap: 100px;
}

a {
    color: white;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

a:hover {
    text-shadow: black 5px 5px 10px;
    font-weight: 600;
}

.profile {
    border-radius: 20px;
    border: 0.5px solid white;
}

.profile:hover {
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.8), 5px 5px 10px black;
}

.bar {
    width: 50%;
    margin: 20px auto;
    text-align: center;
    padding: 12px 20px;
    border-radius: 100px;
    background: linear-gradient(to right, #5F5F5F, #494949, #333333);
    border: 0.5px solid white;
    text-transform: uppercase;
    letter-spacing: 1px;
    word-spacing: 160px;
}

.summary {
    width: 70%;
    margin: 20px auto;
    text-align: center;
}

.scrolling_bar {
    margin: 20px auto;
    text-align: center;
    padding: 12px 20px;
    background: linear-gradient(to right, #5F5F5F, #494949, #333333);
    border: 0.5px solid white;
    text-transform: uppercase;
    letter-spacing: 1px;
    word-spacing: 8px;
}

footer {
    background: linear-gradient(to right, #5F5F5F, #494949, #333333);
    padding: 20px;
    text-align: center;
    border-top: 0.5px solid white;
    position: relative;
    bottom: 0;
    width: 100%;
}

html, body {
    margin : 0;
    height: 100%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: white;
}