.top-container {
    background-color: #EEF5F7;
    padding-top: 100px;
    position: relative;
    margin: 0;
    text-align: center;
}
.heart8bit {
    width: 150px;
    height: 150px;
    position: absolute;
    top: 40px;
    right: 200px;
}
.bookicon {
    position: absolute;
    left: 150px;
    bottom: 345px;
    width: 150px;
    height: 150px;
}

.bookicon path {
    fill: slategray;
}

.laptop-icon {
    height: 250px;
    width: 250px;
    
}
h1 {
    font-family: "Playwrite US Modern", cursive;
    padding-bottom: 100px;
    padding-top: 100px;
    margin: 0;
    font-size: 3rem;
    color: #A0C4FF;
}
h2{
    font-family: "Playwrite US Modern", cursive;
    font-size: 2rem;
    color: #A0C4FF;
}
li, p, h3 {
    font-family: "Arvo", serif;
}
.top-text {
    text-align: center; 
    padding-bottom: 50px;
    margin: 0;
}

.wrapper .dynamic {
    height: 2.5rem;
    overflow: hidden;
}

.dynamic {
    height: 2.5rem;
    overflow: hidden;
    padding-left: 0;
}

.dynamic li {
    list-style: none;
    position: relative;
    top: 0;
    animation: slide 12s steps(6) infinite;
}

.dynamic li span {
    position: relative; 
    display: block; 
    font-size: 2rem;
    line-height: 2.5rem;
}

@keyframes slide {
    0% { top: 0;}
    100% {top: -15rem; }
}
hr {
    border: dotted #A0C4FF 6px;
    width: 4%;
    margin-top: 50px;
    border-bottom: none;
    margin-bottom: 50px;
}
.bottom-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.profile-pic {
    width: 200px;
    border-radius: 50%;
}

.bio {
    text-align: center;
    max-width: 50%;
    padding-bottom: 25px;
}

.skill-container {
    display: flex;
    gap: 15px;
    max-width: 80%;
    margin-bottom: 30px;
}
.skill-img {
    flex: 1;
    max-width: 300px;
    object-fit: contain;
}

.skill-text {
    flex: 2;
    text-align: left;
}

.btn {
    background-color: #A0C4FF;
    color: white; 
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 12px;
    font-family: "Arvo", serif;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 9px lightslategray;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.footer {
    background-color: #EEF5F7;
    gap: 25px;
    text-align: center;
    padding-top: 25px;
}

.footer-link {
    color: #A0C4FF;
    font-weight: bold;
    text-decoration: none;
    margin: 20px;
}

.copyright {
    padding: 20px;
}

@media (max-width: 600px) {
    .skill-container {
        display: flex;
        flex-direction: column;
    }
}