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

html, body {
    height: 100%;
    font-family: 'Georgia', serif;
    background: linear-gradient(to bottom right, #1b1b1b, #3a3a3a);
    color: rgb(255, 255, 255);
    display: flex;
    flex-direction: column;
    width: 100%;
    overflow-x: hidden;
}

body {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("./asstes/Assets/download.jpg");
    background-size: cover;
    background-position: center;
    z-index: -1;
    opacity: 1;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 40px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 20;
    background-color: rgba(0, 0, 0, 0);
    height: 70px;
    box-sizing: border-box;
}

.logo img {
    width: 80px;
    height: auto;
    cursor: pointer;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #00A2E3;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

nav a:hover {
  color: #aaa;
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 100px; 
    width: 100%;
    padding-left: 10px;  
    padding-right: 10px; 
}


.profile {
    display: flex;
    align-items: flex-start;
    margin-top: 80px;
    margin-bottom: 50px;
    width: 100%;
    margin-left: 100px;
}

.profile img {
    border-radius: 40px;
    width: 300px;
    height: auto;
    margin-right: 40px; 
}

.about {
    max-width: 200px;
}

.about h1 {
    font-size: 36px;
    margin-bottom: 20px;
    background: #38347c;
    padding: 10px;
    border-radius: 5px;
}


footer {
    text-align: center;
    padding: 20px;
    background: black;
    width: 100%;
}

.text {
    font-size: 18px;
    line-height: 1.6;
    color: white;
    width: 600px;
}