/* styles.css */

body {
    font-family: Arial, sans-serif;
    background-color: #23263A;
    color: #333;
    margin: 0;
    padding: 20px;
    text-align: center;
}

h1 {
    color: #ffffff;
}

p {
    font-size: 18px;
    line-height: 1.6;
	color: #EBEBED;
}
h2,h3,h4,h5 {
	color:#FF4A57;
}
.container {
	width: 65%;
	margin: auto;
	text-align: left;
}
h1 {
	color: #ffffff;
	font-size: 75px;
}
h2 {
	font-size: 63px;
}

.header {
	height: 60px;
	
}
.header {
	height: 93px;
	background: #212336;
	position: absolute;
	left: 0px !important;
	top: 0px !important;
	width: 100%;
}

.child-container {
	width: 100%;
	height: 100%;
	display: flex;
	margin: auto;
	  flex-wrap: wrap;
}
.child-item {
	background: #2B2D41;
	padding: 20px;
	height: 240px;
	width: 255px;
	margin-right: 57px;
	margin-bottom: 57px;
}

   /* Basic styling for the menu */
    ul {
      list-style-type: none;
      margin: 0;
      padding: 0;
      background-color: #333;
      overflow: hidden;
    }

    li {
      float: left;
    }

   li a {
	display: block;
	color: #EBEBED;
	text-align: center;
	padding: 14px 16px;
	text-decoration: none;
	height: 95px;
	padding: 34px;
	font-size:20px;
}

    li a:hover {
      color:#FF4A57;
    }
	
	ul {
	float: right;
	height: 93px;
	background: transparent;
}

.child-item > p {
	font-size: 14px;
	text-align: left;
}
.child-item > strong > p {
	font-size: 15px;
}
.icon {
	width:40px;
	height:40px;
}
.icon.backend {
  background-image: url('img/backend.png');
  /* Add any additional background properties or styles here */
}

.icon.frontend {
  background-image: url('img/typescript.png');
  /* Add any additional background properties or styles here */
}

.icon.family {
  background-image: url('img/family.png');
  /* Add any additional background properties or styles here */
}

.icon.boat {
  background-image: url('img/boat.png');
  /* Add any additional background properties or styles here */
}
.footer {
	display: flex;
	margin: ;
}
.footer > .icon {
	margin-right: 32px;
}

.icon.sql {
  background-image: url('img/files.png');
  /* Add any additional background properties or styles here */
}
.icon.linkedin {
  background-image: url('img/linkedin.png');
  /* Add any additional background properties or styles here */
}

.icon.twitter {
  background-image: url('img/twitter.png');
	margin-right:15px;
  /* Add any additional background properties or styles here */
}

.icon.insta {
	margin-right:15px;
  background-image: url('img/instagram.png');
  /* Add any additional background properties or styles here */
}

.icon.email {
  background-image: url('img/email.png');
	margin-right:15px;
  /* Add any additional background properties or styles here */
}


.icon.devops {
  background-image: url('img/azure.png');
  /* Add any additional background properties or styles here */
}

.icon.design {
  background-image: url('img/user-experience.png');
  /* Add any additional background properties or styles here */
}

.icon.cicd {
  background-image: url('img/github.png');
  /* Add any additional background properties or styles here */
}

.icon.git {
  background-image: url('img/git.png');
  /* Add any additional background properties or styles here */
}

.icon.sw {
  background-image: url('img/3d-architecture.png');
  /* Add any additional background properties or styles here */
}

.icon.scrum {
  background-image: url('img/iteration.png');
  /* Add any additional background properties or styles here */
}

.icon.unity {
  background-image: url('img/unity.png');
  /* Add any additional background properties or styles here */
}

.icon.blender {
  background-image: url('img/3d-view.png');
  /* Add any additional background properties or styles here */
}

.icon.diy {
  background-image: url('img/hammer.png');
  /* Add any additional background properties or styles here */
}
.icon {
	background-size: cover;
}
.cspa {
margin-bottom:50px;
width: 520px;

}
.cspa {
	margin-left: 50px;
}
img {
	width: 194px;
}
input {
	background: #2B2D41;
	border: none;
	height: 80px;
	width: 700px;
	margin-bottom: 30px;
	padding-left: 34px;
	font-size: 30px;
	color: #1C1E31;
}
input:focus {
  border-color: #FF4A57; /* Replace #007bff with your desired border color */
}
.primary {
	width: 275px;
	height: 65px;
	background: #FF4A57;
	border: none;
	color: #23263A;
	font-weight: bold;
	font-size: 20px;
}

input:focus, textarea:focus, select:focus {
    outline: 2px solid #FF4A57; /* Change the color to red */
   color: #FF4A57;
}

.project-container {
	padding: 20px;
	background: #2B2D41;
	margin-bottom:57px;
}

.project-container > strong > p {
	font-size: 15px !important;
}
.project-container  > p {
	font-size: 14px !important;
}


.skills {
	text-align: right;
	padding-top: 10px;
	padding-bottom: 10px;
	color: white;
	padding-right: 30px;
}

.basic {width: 45%; background-color: #FF4A57;}
.junior {width: 20%; background-color: #FF4A57;}
.senior {width: 90%; background-color: #FF4A57;}

.html {width: 90%; background-color: #FF4A57;}
.css {width: 80%; background-color: #FF4A57;}
.js {width: 65%; background-color: #FF4A57;}
.php {width: 60%; background-color: #FF4A57;}

.child-container.skill-con > p {
	width: 100% !important;
}


.text-link {
	color: #FF4A57 !important;
	text-decoration: none;
}

.skill-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.skills, .child-item, img  {
	opacity: 0;
	transform: translateY(20px);
	animation: fadeInUp 0.5s ease-out forwards;
  }
  
  /* Keyframe for animation */
  @keyframes fadeInUp {
	0% {
	  opacity: 0;
	  transform: translateY(20px);
	}
	100% {
	  opacity: 1;
	  transform: translateY(0);
	}
  }

  .skills:hover {
	transform: scale(1.1); /* Make the element 10% bigger */
	box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1); /* Optional: add a subtle shadow */
  }

  .child-item2 {
	height: 1000px;
	width: 600px;
}