Spaces:
Running
Running
File size: 1,428 Bytes
1525921 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 |
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
.header {
background-color: #fff;
box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
position: fixed;
top: 0;
width: 100%;
z-index: 10;
}
.navbar {
padding: 1rem 2rem;
}
.hero {
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
background-image: url("images/background.jpg"); /* Replace with your background image */
background-size: cover;
background-attachment: fixed;
color: #fff;
}
.about, .skills, .portfolio, .contact {
padding: 5rem 0;
}
.skill-card {
background-color: #f5f5f5;
padding: 2rem;
border-radius: 5px;
text-align: center;
transition: all 0.3s ease-in-out;
}
.skill-card:hover {
transform: scale(1.05);
}
.portfolio-item {
margin-bottom: 2rem;
}
.footer {
background-color: #f2f2f2;
padding: 1rem 0;
}
.social-link {
margin-right: 1rem;
font-size: 1.2
}
.nav-link {
color: #333;
transition: all 0.3s ease-in-out;
}
.nav-link:hover {
color: #007bff;
}
.hero h1 {
font-size: 2.5rem;
font-weight: bold;
margin-bottom: 1rem;
}
.hero p {
font-size: 1.2rem;
line-height: 1.5;
}
@media (max-width: 768px) {
.col-md-6 {
width: 100%;
}
}
.social-link i {
font-size: 1.5rem;
color: #333;
transition: all 0.3s ease-in-out;
}
.social-link:hover i {
color: #007bff;
}
.footer {
padding: 20px;
background-color: #f5f5f5;
} |