.heading {
    color: rgb(85, 41, 12);
}
.body {
    background-color: rgb(247, 210, 177);
     font-family: "Ubuntu Sans", sans-serif;
}
.cen {
    align-items: center;
    text-align: center;
}

.div1 {
    margin-left: 50px;
}
.typing {
    overflow: hidden;
    white-space: nowrap;

    width: 0;

    animation: typing 3s steps(30, end) forwards;
}

@keyframes typing {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}
footer {
    background-color: #20263e;
    color: white;
    padding: 2px;
    margin-left: 20px;
    margin-right: 20px;
    border-radius: 12px;
    margin-top: 12px
}
section {
    background-color: rgb(206, 221, 68);
    padding: 1rem
}

nav {
    background-color: rgb(206, 221, 68);
    padding: 1rem
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 15px 30px;

    background-color: #20263e;
    border-radius: 12px;

    margin: 20px;
}
img {
    display: block;
    margin: auto;
}
.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #000102;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.2s;
    margin-top: 20px;
    margin-bottom: 20px;
}
.logo a {
    color: white;
    text-decoration: none;

    font-size: 24px;
    font-weight: bold;
}

.nav-links {
    display: flex;
    gap: 20px;

    list-style: none;
}

.nav-links a {
    color: white;
    text-decoration: none;

    font-size: 16px;

    transition: 0.2s;
}

.nav-links a:hover {
    color: #00bfff;
}
.buby {
    margin-left: 20px;
    margin-right: 20px;
    border-radius: 12px;
}
.projects {
    margin-top: 50px;
}

.project-container {
    display: flex;
    justify-content: center;
    gap: 20px;

    flex-wrap: wrap;

    margin-top: 20px;
}

.project-card {
    background-color: #111;

    color: white;

    width: 250px;

    padding: 20px;

    border-radius: 15px;

    box-shadow: 0px 4px 10px rgba(0,0,0,0.3);

    transition: 0.3s;
}

.project-card:hover {
    transform: translateY(-5px);
}

.project-card a {
    display: inline-block;

    margin-top: 10px;

    color: #00bfff;

    text-decoration: none;
}