@charset "UTF-8";
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "PT Sans", sans-serif;
}

body {
    font-family: "PT Sans", sans-serif;
    margin: 0;
    padding: 0;
    background-color:#FFA929;
    color: #333;
}

.container {
    margin: 0 auto;
    padding: 20px;
    background-color:#FFE6B1;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
	width: 800px;
	height: 1440px;
    display: flex;
    overflow: hidden;
}
	
.profile img {
    border-radius: 50%;
    width: 150px;
    height: 150px;
    object-fit: cover;
}

.contact, .experiences, .skills {
    margin-top: 90px;
	margin-bottom: 50px;
}

.contact h2, .experiences h2, .skills h2 {
    font-size: 20px;
    margin-bottom: 5px;
}

.skills .skill {
    margin-bottom: 20px;
}

.skills .bar {
    background-color: #ddd;
    border-radius: 5px;
    overflow: hidden;
}

.skill img {
width: 35px;
height: 35px;
margin-right: 10px;
}

.skills .level {
    height: 10px;
    background-color:#FC0000;
    border-radius: 5px;
}

.left-column {
    background-color:#FFA929;
    color:black;
    padding: 20px;
	height: 120%;
    width: 30%;
}

.left-column .profile-pic img {
    width: 100%;
    border-radius: 50%;
}

.left-column .experiences ul {
    list-style-type: none;
}

.right-column {
    width: 70%;
}

.header {
    text-align: center;
    background-color:#FFE6B5;
    color:black;
    padding: 20px;
    border-radius: 10px 10px 0 0;
}

.header h1 {
    margin: 0;
	font-size: 50px;
	font-family: "Adamina", serif;
}

.section h2 {
    margin: 0;
	align-content: center;
    font-weight: normal;
}

.content {
    padding: 20px;
	align-content: center;
}

.section {
    margin-bottom: 10px;
}

.section h2 {
	background-color:#FFA929;
	width: 60%;
    color:black;
    padding: 10px;
    border-radius: 0px;
	border-bottom-right-radius: 12%;
	border-top-right-radius: 12%;
}

.section h3 {
    background-color:#FFA929;
	width: 30%;
    color:black;
    padding: 10px;
    border-radius: 0px;
	border-bottom-right-radius: 12%;
	border-top-right-radius: 12%;
	
}

.section p, .section ul {
    margin: 20px 0;
}

.section ul {
    list-style-type: none;
    padding: 0;
	align-content: center;
}

.section ul ul {
    margin-top: 5px;
    margin-left: 20px;
    list-style-type: disc;
	
}

.projects {
    display: flex;
    justify-content: space-between;
}

.projects img {
    width: 22%;
	height: 35%;
    border-radius: 5px;
}

.interests {
    display: flex;
    justify-content: space-around;
}

.interest {
    text-align: center;
}

.interest img {
    width: 50px;
    height: 50px;
	
}

.contact img {
	width: 20px;
    height: 20px;
}

@media (max-width: 1024px) {
    .container {
        width: 100%;
        height: auto;
    }

    .left-column, .right-column {
        width: 100%;
        height: auto;
    }

    .projects {
        flex-wrap: wrap;
    }

    .projects img {
        width: 48%;
        margin-bottom: 10px;
    }
}

@media (max-width: 768px) {
    .header h1 {
        font-size: 40px;
    }

    .section h2, .section h3 {
        width: 80%;
        padding: 10px;
    }

    .projects img {
        width: 100%;
        margin-bottom: 10px;
    }

    .contact, .experiences, .skills {
        margin-top: 40px;
        margin-bottom: 30px;
    }
	 .left-column, .right-column {
        width: 100%;
        height: auto;
	}
}

@media (max-width: 480px) {
    .header h1 {
        font-size: 30px;
    }

    .section h2, .section h3 {
        width: 100%;
        padding: 8px;
    }

    .profile img {
        width: 100px;
        height: 100px;
    }

    .skill img {
        width: 25px;
        height: 25px;
    }

    .skills .level {
        height: 8px;
    }

    .contact, .experiences, .skills {
        margin-top: 20px;
        margin-bottom: 20px;
    }
	
	 .left-column, .right-column {
        width: 100%;
        height: auto;
	}
}