* {
    margin: 0;
    padding: 0;
}

nav{
 text-align: center;
 padding-bottom: 2rem;
}

nav a{
    text-decoration: none;
    color: #6B4A37;
    font-size: 1.5rem;
    padding: 2%;
}

nav a:hover{
color: #C3A37D;
}

h1{
    text-align: center;
    font-size: 5rem;
    color: #C3A37D;
}

article{
    background-color: #6B4A37;
}

/* kiity */

.myText:hover + .hide {
    opacity: 1;
}

.hide {
    color: #C3A37D;
    opacity: 0;
    transition: opacity 0.5s ease;
    text-align: center
}

.myText {
    text-align: center;
    color: #C3A37D;
    font-size: 2rem;
}


/* id="web2" */

#web2 figcaption{
    padding: 2%;
    display: inline-block;
    font-size: 2rem;
    background-color: #C3A37D;
    border-radius: 15%;
    border-color: #6B4A37;
    color:#6B4A37;
    text-align: center;
}

#web2 img{
    width: 30%;
}

#web2 img:hover{
    transform: scale(1.2);
}

    /* examples */

h2{
    text-align: center;
    padding: 5%;
    font-size: 2rem;
    color: #6B4A37;
}

#examples{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 10px;
    place-items: center;
}
#examples img{
    width: 80%;
    object-fit: cover;
    aspect-ratio: 16/16;
    border-radius: 25%;
}

#examples :hover{
    transform: scale(0.9)
}

footer {
    text-align: center;
    width: 100%; 
    color: #C3A37D;
    background-color: #6b4a37  
}

body {background-color: lightyellow;}