portfolio-rakib / static /css /custom_style.css
rakib72642's picture
Fix: Use Git LFS for font and image files
4340a39
/* General reset and box-sizing */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f9f9f9;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.container {
text-align: center;
background-color: #fff;
padding: 50px;
border-radius: 10px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
width: 80%;
max-width: 600px;
}
.container h1 {
color: #1A76D1;
font-size: 36px;
margin-bottom: 20px;
}
.container p {
font-size: 18px;
color: #333;
margin-bottom: 40px;
}
.btn {
background-color: #1A76D1;
color: white;
padding: 15px 30px;
font-size: 16px;
border: none;
border-radius: 5px;
cursor: pointer;
text-decoration: none;
transition: background-color 0.3s ease;
}
.btn:hover {
background-color: #010d1a;
}