body {
    background-color: rgba(10, 12, 16, 1);
    margin: 20px;
    color: aliceblue;
    font-family: 'Times New Roman', Times, serif;
}

header {
    text-align: center;
}

header>p {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-style: italic;
}

h1 {
    color: rgba(200, 162, 200, 1);
}

nav>ul {
    display: flex;
    justify-content: space-around;
    align-items: center;
    border: 2px whitesmoke solid;
    padding: 15px;
    border-radius: 50px;
    flex-wrap: wrap;
    background-color: rgba(200, 162, 200, 1);
}

nav>ul>li {
    list-style: none;
    transition: transform 0.2s;
    cursor: pointer;
}

nav>ul>li:hover {
    transform: scale(0.8);
}

a {
   color: aquamarine;
}

#intro {
    text-align: center;
    padding: 15px;
    margin: 10px;
}

#intro-img {
    width: 400px;
    height: 200px;
    border-radius: 60px;
}

#about {
    text-align: center;
    margin: 15px;
}

h4 {
    color: rgb(34, 114, 117);
}

#frontend {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.images {
    gap: 50px;
    transition: transform 0.3s;
    cursor: grab;
}

.images:hover {
    transform: scale(0.8);
}

.about {
    width: 200px;
    height: 200px;
    border-radius: 20px;
}

#project {
    text-align: center;
}

#project>p {
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    color: antiquewhite;
}

.sec {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 10px;
    margin: 20px;
    flex-wrap: wrap;

}

.sec>section {
    border: 1px solid whitesmoke;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgb(100, 83, 61);
    height: 350px;
    width: 200px;
    transition: transform 0.3s;
}

.sec>section:hover {
    transform: scale(1.05);
}

.sec>section>img {
    width: 150px;
    height: 150px;
}

h5 {
    color: blanchedalmond;
}

#contact {
    text-align: center;
}

#contact>ul>li {
    list-style: none;
    color: darkgray;
}

footer {
    text-align: center;
    margin: 20px;
    padding: 10px;
    background-color: rgba(200, 162, 200, 1) ;
    color: aquamarine;
}

@media (max-width: 768px) {
    body {
        font-size: 16px;
        padding: 10px;
        width: 60%;
    }
    img{
        max-width: 100%;
        height: auto;
        display: block;
    }
}