Spaces:
Running
Running
File size: 1,635 Bytes
e74c99f 1525921 e74c99f 1525921 e74c99f 1525921 e74c99f 1525921 e74c99f 1525921 e74c99f 1525921 e74c99f 1525921 e74c99f 1525921 e74c99f 1525921 e74c99f 1525921 e74c99f 1525921 e74c99f 1525921 e74c99f 1525921 e74c99f 1525921 e74c99f 1525921 e74c99f 1525921 e74c99f 1525921 e74c99f 1525921 e74c99f 1525921 e74c99f |
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 103 104 105 106 107 108 109 110 111 112 113 114 115 |
/* General styles */
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
.container {
max-width: 960px;
margin: 0 auto;
padding: 20px;
}
/* Header styles */
.header {
background-color: #f5f5f5;
}
.navbar {
padding: 0 20px;
}
.navbar-brand {
font-size: 20px;
font-weight: bold;
}
.hero {
height: 100vh;
background-image: url("images/background.jpg"); /* Replace with your background image path */
background-position: center;
background-size: cover;
color: #fff;
text-align: center;
}
.profile-img {
width: 200px;
height: 200px;
border-radius: 50%;
margin: 0 auto;
}
/* About section styles */
.about {
padding-top: 50px;
}
.about p {
line-height: 1.5;
}
/* Skills section styles */
.skills {
padding-top: 50px;
}
.skill-card {
background-color: #f0f0f0;
border-radius: 5px;
padding: 20px;
margin: 10px;
text-align: center;
}
/* Portfolio section styles */
.portfolio {
padding-top: 50px;
}
.portfolio-item {
margin-bottom: 20px;
}
.card-img-top {
height: 250px;
object-fit: cover;
}
/* Contact section styles */
.contact {
padding-top: 50px;
text-align: center;
}
.social-media {
display: flex;
justify-content: center;
gap: 10px;
}
.social-link {
font-size: 20px;
color: #333;
}
/* Footer styles */
.footer {
background-color: #333;
color: #fff;
padding: 10px;
text-align: center;
}
/* Responsive adjustments */
@media (max-width: 768px) {
.hero {
height: auto;
}
.card-img-top {
height: 200px;
}
}
|