/*
Why did you look at this file? Bro you're not a hacker for just looking at my css.
Better look for other webpages.
*/

html, body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
}

body {
  background: linear-gradient(135deg, #000000, #0a192f);
  background-attachment: fixed;
}

h1 {
    font: 60px bolder monospace;
    text-align: center;
}

h3 {
    font: 20px bolder sans-serif;
}

.container {
    display: block;
    margin: 0 auto;
    color: black;
    background: linear-gradient(135deg, #ffffff, #d3d3d3);
    width: fit-content;
    padding: 40px 20px;
    border-radius: 8px;
    border: 1px solid black;
    margin-top: 20px;
}

.nav-bar {
    display: flex;
    justify-content: center;
    background-color: black;
    gap: 100px;
    padding: 30px 15px;
    border-radius: 8px;
    border: 1px solid white;
}

a {
    color: blue;
    text-decoration: none;
    transition: all 0.5s ease-in-out;
}

.nav-bar a {
    color: white;
    text-decoration: none;
    transition: all 0.5s ease-in-out;
}

a:hover {
    text-decoration: underline;
}

input {
    border-radius: 8px;
    padding: 10px 5px;
}

button {
    padding: 5px;
    background-color: black;
    color: white;
    border-radius: 8px;
    display: block;
}

form button {
    margin: 0 auto;
}

.projectname {
    font: 50px bold black;
}

h6 {
    font: 10px bold sans-serif;
    color: grey;
}

h5 {
    font: 15px bold sans-serif;
    color: grey;
}

.user-image {
    width: 100px;
    height: 100px;
    border-radius: 8px;
    border: 1px solid black;
}

.member {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border: 2px solid black;
    border-radius: 8px;
    margin-bottom: 20px;
}

