html {
    font-size: 20px;
    font-family: 'Titan One';
    letter-spacing: 1px;
    width:100%;
    color: #231942;
}

body {
    background-color: #ffeffa;
}
* {
    padding: 0;
    margin: 0;
}

header{
    text-align: center;
    display: flex;
    flex-direction: column;
    height: fit-content;
}

#home_header{
    background-color: #231942;
    color: #ffdbf4;
}

header h1 {
    font-size: 80px;
}

#home_header h1{
    color: #ffeffa;
    font-size: 80px;
}

.title{
    font-size: 40px;
    color: #231942;
}
.sub_title{
    font-size: 30px;
    color:#231942;
}
.section{
    height: fit-content;
    padding: 30px;
}

#profile_card{
    display: flex;
    flex-direction: row;
    border-radius: 50px;
    border : 4px solid #231942;
}

.profile_section{

    flex-basis : 50%;
    padding: 10px;
}

#Info{
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 5px;
}

#About{
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
    background-color: #e0b1cb;
    text-align: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

#About p{

    padding: 30px;
    border : 4px solid #231942;
    border-radius: 50px;
}

#profile_pic{
    display: flex;
    flex-direction: row;
    text-align: start;
}

#profile_pic img{
    border-radius: 50px;
    max-width: 60%;
    max-height: 90%; 
}

#profile_name{
    padding-left: 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#name{
    color:#5e548e;
    font-size: 60px;
}

hr{
    width: 70%;
    margin-left: 15%;
    height: 4px;
    background-color: #231942;
}


#Others{
    padding: 30px;
    display: flex;
    flex-direction: row;
}

.other_section{
    flex-basis: 50%;
}

#Hobbies{
    padding: 40px;
    text-align: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

#Hobbies ul{
    width: fit-content;
    margin: auto;
    text-align: start;
    padding: 40px;
    border: 4px solid #231942;
    border-radius: 50px;
}


#LanguagesProjects{
    padding: 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.list_languages{
    display: flex;
    flex-direction: row;
    padding: 20px;
}

.list_rows{
    flex-basis: 50%;
    display: flex;
    flex-direction: column;
}

#lang{
    text-align: left;
    color: #5e548e;
}
#level{
    text-align: right;
}

.thumbnail {
    position: relative;
    width: 300px;
    background-color: #f3f3f3;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    margin-bottom: 25px;
}

.thumbnail img{
    width: 100%;
    height: 300px;
}
  
.caption {
    text-align: center;
    padding: 10px 20px;
}

#projects_grid{
    display: grid;
    grid-template-columns: auto auto auto auto ;
}

.project_link{
    position:absolute; 
    width:100%;
    height:100%;
    top:0;
    left: 0;

    z-index: 1;
}

