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

@font-face {
    font-family: "Hack";
    src: url("Hack-Regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Hack";
    src: url("Hack-Bold.ttf") format("truetype");
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: "Hack";
    src: url("Hack-Italic.ttf") format("truetype");
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: "Hack";
    src: url("Hack-BoldItalic.ttf") format("truetype");
    font-weight: bold;
    font-style: italic;
}

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

body {
  background-image: linear-gradient(180deg, #000000, #20095a);
  background-attachment: fixed;
  font-family: "Hack";
} 

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

h3 {
    font-size: 20px;
}

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

.nav-bar {
    position: relative;
    display: flex;
    justify-content: center;
    background-image: linear-gradient(135deg, #000000, #1f1f1f);
    gap: 100px;
    padding: 50px 25px;
    border-radius: 8px;
    border: 1px solid white;
}

.logo {
    width: 75px;
    height: auto;
    border-radius: 8px;
    flex-shrink: 0;
}

.brand {
    position: absolute;
    top: 20px;
    left: 10px;

    display: flex;
    align-items: center;
    gap: 10px;
}

.brand .logo {
    width: 75px;
    height: auto;
}


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-size: 24px;
    font-weight: bold;
    color: white;
}

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

h5 {
    font-size: 15px;
    font-weight: bold;
    font-family: 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;
}

.tl {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 60px;
}
