@charset "UTF-8";
/* CSS Document */

/* Element Selecotr */

body {
	margin: 0;
	padding: 0;
	font-family: 'Lato', sans-serif;

}

h1 {
	font-size: 58pt;
	font-weight: 700;
}

h2 {
	font-size : 18pt;
	border-radius: 50px;
	text-align: center;
	margin-right: 80px;
}

/* Class Selector */

.main {
	
	width: 80%;
	margin: auto;
	padding: 1%;
	box-sizing: border-box;
	margin-bottom:50px;
	
}

.container {
	width:80%;
	margin: auto;
	padding:1%;
	box-sizing:border-box;
	margin-bottom: 50px;
	background: #FEFEF8;
}


/* Education */


div.experiences {
	margin :20px 150px;
	display:grid;
	grid-template-columns: 1fr 1fr;
	grid-colum-gap:20px;
}

.title {
	padding: 0px 0px 20px 30px;
}

.contents {
	padding:0px 30px;
	border-left:5px solid #92A6D4;
}

.box {
	position: relative;
	padding: 20px;
	border: 1px #4A62A0;
	background-color: #A6C6E7;
	cursor: pointer;
	transition: all 0.4s;
	margin-bottom: 20px;
}

.box:hover {
	box-shadow: 0px 3px 12px 0px #ccc;
	border: 1px solid transaparent ;
	
}

.box::before {
	content: '';
	position:absolute;
	width: 16px;
	height:16px;
	border-radius: 50%;
	right:calc(100% + 22px);
	top:0;
	background-color:white;
	border: 2px solid #92A6D4;
}

.box >h4 {
	font-size: 12pt;
	position:relative;
	color:black;
	font-weight: 300;
}

.box >h3 {
	font-size: 16px;
	padding:10px 0px 6px;
	color: black;
	font-weight: 500;
}

.box >p {
	font-size: 16px;


}

/* Profile */


.main {
    padding-left: 40px;
    margin-bottom : 30px;
    box-sizing: border-box;
    display: flex;
	gap:10%;
	
}

.img {
	width:300px;
	height:auto;
	border-radius: 100%;
	border: solid #9DBCDB;
	border-width: 30px;
	
}


.profile-name h1 {
    font-size: 58px; 
	font-weight: 700;
}

.profile-name p {
    font-size: 24px;
	font-weight: 300;
}


.about {

	width: 80%;
	margin : auto;
	padding : 2%;
	box-sizing: border-box;
	background-color: #9DBCDB;
}

.about p {
	
	width: 80%;
	margin: auto;
	padding: 1%;
	box-sizing: border-box;
	line-height: 24pt;
	margin-bottom: 20px;
	
}

/*projects*/

.project >h2 {
	text-align: center;
}

.projects {
	width: 80%;
	margin : auto;
	padding : 2%;
	box-sizing: border-box;
}


.projects {
	
	display: flex;
	justify-content: center;
	align-content: center;
	gap: 2%;
	margin: 100px 100px 0px 100px;
}


.column > h2 {

	font-size: 14pt;
}

.column {
	min-width: 30%;
	min-height: 300px;
	padding: 1%;
	box-sizing: border-box;

}

.column-colour {
	background:#A6C6E7;
}

.task-title a:link, a:active {
	color:coral;
	text-decoration: none;
}

.task-title a:hover, a:visited {
	color:darksalmon;
	text-decoration: underline;
}

/* Footer */

.footer {
	width:80%;
	margin: auto;
	padding:1%;
	box-sizing:border-box;
	background-color: #92A6D4;
	text-align: center;
}

.contact-heading {	
	font-weight: 700;
	color: #FFFFFF;
	margin: 30px 60px 0px 60px;
	font-size: 36pt;
}

.phone {
	font-weight: 400;
	color: #FFFFFF;
	margin: 60px 60px 0px 70px;
	font-size: 12pt;
	margin-bottom: 30px;
}

/* skills*/

.skills {
	
	margin-bottom: 150px;
}
.skill-list {
    margin: 50px 200px;
	line-height: 40px;
}
.skill-list ul {
	list-style: none;
}

.skills > h2 {
    font-size: 18pt;
	font-weight : 700;
}

.skill-title {
    font-size: 12pt;
	font-weight: 500;
}

.bar {
    width: 80%;
    margin: 0 auto; 
    background: #B6B6B6;
    display: block;
    height: 20px;
    border: 1px solid #FF5457; 
    overflow: hidden;
}

.bar span {
    height: 20px;
    float: left;
    background: #92A6D4;
}


.photoshop {
    width: 80%;
    margin: 0 auto;
}

.illustrator {
    width: 70%;
    margin: 0 auto;
}

.aftereffect {
    width: 65%;
    margin: 0 auto;
}

.indesign {
    width: 60%;
    margin: 0 auto;
}





@media (max-width:992px) {
	.main {
		display: block; 
	}
	
	.profile {
		margin-top:20px;
	}
	
	.row {
		display: block; 
	}
	
    div.experiences {
        grid-template-columns: 1fr;
    }
    div.experiences > div.col:nth-child(2) {
        margin-top: 30px;
    }
	
	.projects {
        width: 90%;
        margin: 20px auto 0;
        flex-direction: column;
    }

    .column {
        min-width: 100%;
        margin: 0;
    }
	
	 .skill-list {
        margin: 20px; /* Adjust margin for smaller screens */
        line-height: 30px; /* Adjust line height for smaller screens */
    }

    .skills > h2 {
        font-size: 16pt; /* Adjust font size for smaller screens */
    }

    .skill-title {
        font-size: 10pt; /* Adjust font size for smaller screens */
    }

    .bar {
        width: 90%; /* Wider bars for better visibility on mobile */
    }
}

