*{
    box-sizing: border-box;
}

html, body{
    margin:0;
    height : 100%;
    background: linear-gradient(to bottom, #4facfe, #090250) no-repeat fixed;
}

body{
    font-family: Helvetica, Arial , sans-serif;
    color: #222;
}

nav{
    width:100%;
    text-align: right;
    color: white;
    padding: 10px;
    height: 60px;
    background-color: black;
    margin-bottom: 0px;
    border-radius: 8px;
    padding-right: 40px;
    position: sticky;
    top: 0;
}

nav li {
    display: inline-block;
    height: 100%;
    margin-left: 21px;

}

nav li a:hover{
    text-decoration: underline;
}

nav li a {
    color: white;
    font-size: 16px;
    text-decoration: none;
}

.profile-and-summary{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-template-rows: 100px, 100px;
    border: 1px solid #222;
    border-radius: 20px;
    padding: 30px;
    max-width:1200px;
    margin: auto;
    background-color: #9af;
    gap: 10px;
}

.col{
    display: inline-block;
    width: calc(33.33% - 22px);
    vertical-align: top;
    min-height: 200px;
}

footer{
    text-align: center;
    color: white;
    background-color: black;
    border-radius: 8px;
    padding: 15px;
    position: fixed;
    bottom:0;
    left: 10px;
    right: 10px;
}

h1{
    padding: 0 10px;
}

.text-box{
    float: left;
    background-color : white;
    border-radius: 8px;
    padding : 10px;
    color:black;
    padding-left : 20px;
    font-size: 25px;
}

.column-span-3{
    grid-column: span 3;
}

.column-span-2{
    grid-column: span 2;
}

.column-span-1{
    grid-column: span 1;
}

.full {
    grid-column: 1/-1;
}

mark{
    text-decoration: underline;
}

.profile-picture {
    width: 450px;
    height: 450px;
    background-color: white;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: bold;
    overflow: hidden;
}

.profile-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-picture:hover{
    filter : blur(5px);
}
.portfolio-button {
    background-color: blue;
    color: white;
    border-radius: 8px;
    text-align: center;
    padding: 5px;
    text-decoration: none;
    display: inline-block;
}

.top-banner {
    width: 100%;
    height: 250px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../img/banner.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
    margin: 0;
}

.banner-overlay {
    text-align: center;
    color: white;
    padding: 20px;
    border-radius: 10px;
}

.projects{
    border: 1px solid #222;
    border-radius: 20px;
    padding: 30px;
    max-width:1200px;
    margin: auto;
    background-color: #9af;
    gap: 10px;
}

.project-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3px;
}

.project-card {
    display: flex;
    flex-direction: column;
}

.project-image {
    background: #e0e0e0;
    border-radius: 12px;
    margin-bottom: 1rem;
    background-size: cover;
    background-position: center;
    min-height: 350px;
    max-height: 350px;
}

.project-image {
    width: 100%;
    min-height: 250px; 
    background-color: #e0e0e0; 
    border-radius: 15px;
}

.projects-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 50px;
    max-width: 1200px;
    margin: 0;
}

.about{
    border: 1px solid #222;
    border-radius: 20px;
    padding: 30px;
    max-width:1200px;
    margin: auto;
    background-color: #9af;
    gap: 10px;
}

.intro-grid {
    display: grid;
    grid-template-columns: 450px 1fr;
    gap: 50px;
    align-items: start;
}


.profile-container {
    width: 100%;
    background-color: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    line-height: 0; 
}

.profile-container img {
    width: 100%;
    height: auto;
    display: block;
}

.aspirations-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
}

.grid-item {
    border-radius: 24px;
    max-height: 250px;
    overflow: hidden; 
}

.resume{
    border: 1px solid #222;
    border-radius: 20px;
    padding: 30px;
    max-width:1200px;
    margin: auto;
    background-color: #9af;
    gap: 10px;
    width: 100%;
    max-width: 1100px;
    border-radius: 40px;
    padding: 50px;
}

.resume-grid{
    display: grid;
    grid-template-columns: 2fr 1fr;
    padding: 10px;
    gap: 30px;
}

.content-box {
    background: white;
    border-radius: 30px;
    padding: 30px;
}
