body {
    background-color: #F4CCAA;
    font-size: large;
    color: black;
    font-family: Arial, Helvetica, sans-serif;
    align-items: center;
}
.skill-button {
    padding: 2%;
    box-sizing:var(white);
    border-radius:50%;
    background-color:burlywood;
    color: black;
    
}
.box {
     flex: 1 1 30%;
    min-width: 250px;
    max-width: 350px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    background-color: burlywood;
    color:black;
    font-weight: bold;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;

    }
.box:hover {
     background-color:rgb(144, 117, 82) ;
    transform: scale(1.02);
}
.container {
    max-width: 1200px;
    margin: auto;
    padding: 2 rem;
}
.plan-details {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
}
.box{
    margin: 0 auto;
    max-width: 400px;
    width:100%;
}
h1 {
    height: 70px;
    overflow:hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}
h1 span {
    animation: bounce 0.4s ease infinite alternate;
    position:relative;
    display: inline-block;
    

}
h1 span:nth-child(2) {
    animation-delay: 0.1s;
}
h1 span:nth-child(3) {
    animation-delay: 0.2s;
}
h1 span:nth-child(4) {
    animation-delay:0.3s;
}
h1 span:nth-child(5) {
    animation-delay:0.4s;
}
h1 span:nth-child(6) {
    animation-delay:0.5s;
}
h1 span:nth-child(7) {
    animation-delay:0.6s;
}
h1 span:nth-child(8) {
    animation-delay:0.7s;
}
h1 span:nth-child(9) {
    animation-delay:0.8s;
}
h1 span:nth-child(10) {
    animation-delay:0.9s;
}
h1 span:nth-child(11) {
    animation-delay:1.0s;
}
h1 span:nth-child(12) {
    animation-delay:1.1s;
}
@keyframes bounce {
    to {
     transform: translateY(-20px);
    }
}
select {
    width: 300px;
    padding: 12px;
    border-radius: 8px;
    border: 2px black;
    background: burlywood;
    font-size: 18px;
    color: #333;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin: 20px auto;
    display: block;
}

select:focus {
    border-color: #3333ff;
    outline: none;
}

option {
    color: #333;
    background: #fff;
    font-size: 16px;
}
.learning-path-section {
    display: flex;
    align-items: center;
    gap: 20px;
}
.learning-path-section img {
    max-width: 100%;
    height: auto;
}
.side-by-side {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}   