body {
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
    background-color:rgb(3, 3, 8);
    color: #b39f9f;
}
h1{
    font-size: 2.5rem;
    margin-top: 30px;
    color: #b3b7bd;
}
h2{
    margin-top: 40px;
    color: b3b7bd;
}
.skills {
    text-align: left;
    margin-left: 20px;
    font-weight: bold;
    list-style-type: square;
}
#education {
    text-align: left;
    margin-left: 20px;
    font-weight: bold;
    list-style-type: square;
}
#education h2 {
font-size: 28px;
margin-bottom: 20px;

}
.educ {
    background: f5f5f5;
    border-radius: 10px;
}
.intro {
    text-align: left;
    margin-left: 20px;
    margin-right: 20px;
}
.about {
    color: #ff5733;
    font-weight: bold;
    font-size: 15px;
}
.about1 {
    color: #ff5733;
    font-weight: bold;
    font-size: 30px;
}
.hobby {
    color: #ff5733;
    font-weight: bold;
    font-size: 24px;
}
.game {
    font-size: 20px;
    background-color: whitesmoke;
    line-height: 1.6;
    color: #333;
}
#gaming {
    background: white;
    padding: 20px;
    margin: 10px;
    border-radius: 18px; 
    overflow:hidden;
}
#gaming i {
    display: block;
    margin-bottom: 2px;
}
#gaming h2 {
    margin-top: 0;
}
.learning-journey {
    text-align: center;
    margin: 50px 0;
}
.learning-journey h2 {
    color: #e63946;
    font-size: 28px;
    margin-bottom: 25px;
}
.journey-grid {
    display: grid;
    grid-template-columns: 
    repeat(2, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 15px;
}
.journey-card {
    background: white;
    padding: 25px;
    border-radius: 18px;
    box-shadow: 0 4px 15px;
    rgba(0, 0, 0, 0.15);
    transition: transform 0.3s 
    ease, box-shadow 0.3s ease;
    height: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.journey-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 6px 20px
    rgba(0, 0, 0, 0.25)
}
.journey-card i {
    font-size: 50px;
    color: #ff5733;
    margin-bottom: 12px;
}
.journey-card h3 {
    margin: 20px 0;
    font-size: 25px;
    color: #333;
    font-weight: bold;
}
.journey-card p {
    font-size: 20px;
    color: #666;
}
button {
    padding: 10px 20px;
    font-size: 16px;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
button:hover{
    background: #005663;
}