@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Poppins:wght@400;500;600;700&display=swap');

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

a {
	text-decoration: none;
}

li {
	list-style: none;
}

:root {
	--poppins: 'Poppins', sans-serif;
	--lato: 'Lato', sans-serif;

	--light: #F9F9F9;
	--blue: #3C91E6;
	--light-blue: #CFE8FF;
	--grey: #eee;
	--dark-grey: #AAAAAA;
	--dark: #342E37;
	--red: #DB504A;
	--yellow: #FFCE26;
	--light-yellow: #FFF2C6;
	--orange: #FD7238;
	--light-orange: #FFE0D3;
	
}

html {
	overflow-x: hidden;
}

body.dark {
	--light: #0C0C1E;
	--grey: #060714;
	--dark: #FBFBFB;
}

body {
	background: var(--grey);
	overflow-x: hidden;
}
.startupincubated{
    width: 100%;
    height: 100vh;
    margin-top: 2rem;
    border-radius: 1rem;
    color: var(--dark);
	padding: 36px 24px;
	font-family: var(--poppins);
	max-height: calc(100vh - 56px);
	overflow-y: auto;
    background-color: var(--light);
    
   
}
.startupincubated h1{
    font-size: 2.5rem;
    font-weight: 600;
}
.startups{
    height: 100vh;
    width: 100%;
  
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.studentprofile{
   

   
    width: 100%;
    height: 40vh;
    margin-top: 1rem;
  
    border-radius: 1rem;
    color: var(--dark);
	padding: 20px 24px;
	font-family: var(--poppins);
	max-height: calc(100vh - 56px);
	
    /* background-color: var(--light); */
    
    
   
}
.studentprofile-parts{
    display: flex;
    height: 100%;
    width: 100%;
}
.studentprofile-part1{
    width: 25%;
    height: 84%;
    
    
    border-radius: 1rem;
    background-size: cover;
    background-position: center;
    object-fit: cover;
}
.studentprofile-part1 img{
    height: 100%;
    width: 100%;
    border-radius: 1rem;
    background-size: cover;
    background-position: center;
    object-fit: cover;

}
.studentprofile h3{
    color: grey;
   
    font-size: 2rem;
    font-weight: 400;
}
.studentprofile-top{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.studentprofile-left{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 7rem;
}

.studentprofile-right i{
    font-size: 1.5rem;
}
.studentprofile-part2{
    width: 75%;
    height: 100%;
  
    padding: 1rem;
}
.student-usernamepic{
    display: flex;
    align-items: center;
    gap: 6px;
    justify-content: space-between;
    

}
.student-usernamepic p {
    
    
	
	font-size: 20px;


}
.student-usernamepic img{
    width: 30px;
	height: 30px;
	border-radius: 50%;
	object-fit: cover;
}
.student-usernamepic .part1{
    display: flex;
    align-items: center;
    gap: 6px;

}
.student-usernamepic .part2{
    display: flex;
    align-items: center;
    gap: 20px;

}
.studentprofile-part2 .student-data1{
   
    display: flex;
    gap: 20px;
    width: 100%;
   
    padding: 20px 30px;

}
.studentprofile-part2 .student-data1 p{
    font-size: 15px;
    display: flex;
    gap: 10px;
    align-items: center;
    
  

}
.studentprofile-part2 .student-data1 p i{
    font-size: 25px;
   
  

}
.studentprofile-part2 .student-data2 p{

    padding: 0px 30px;
    letter-spacing: 1px;
    word-spacing: 0.5rem;
    line-height: 2rem;
    font-size:15px;
    font-weight: 200;
}

.student-data1 p:nth-child(4) i{
    font-size: 20px;
    align-items: center;

}

.date-uploaded p{
    color: grey;
    font-size: 13px;
   

}
.project-links a:nth-child(1) {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    background: var(--light-blue);
    color: var(--blue);
    padding: 7px 9px;
    border-radius: 10px;
    

}
.project-links a:nth-child(2) {
    font-size: 1rem;
    background: var(--light-blue);
    color: var(--blue);
    padding: 7px 9px;
    
    border-radius: 10px;
    

}
.project-links{
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: 3rem;
    margin-top: 1rem;
}
