/*Selector { property: value; }*/
body,
html {
    background-color: #aeb374;
    margin-left: 5px;
    margin-right: 5px;
    padding: 5px;

}

#container-first {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 0.2fr;
    gap: 20px;

}

.heading {
    grid-area: 1/1/2/4;
    grid-row: 1/2;
    background-color: #22240b;
    color: white;
    text-align: center;
    padding: 10px 0px 10px 0px;
    list-style: none;


}

img {
    border-radius: 50%;
    border: solid 3px #44471b;
    grid-area: 1/3/2/4;
    object-fit: cover;
}

p {
    font-size: 20px;
}

h2 {
    font: size 3px;
    border-style: groove;
}

h5 {
    font-size: 20px;
}

.main {
    background-color: rgba(0, 0, 0, 0.644);
    text-align: center;
}

.nav {
    list-style: none;
    display: grid;
    grid-area: 2/3/3/4;
    gap: 20px;
    padding-left: 10px;
    display: flex;
    justify-content: space-between;

}


a {
    color: black;
    font-style: italic;
    font-weight: bold;
}


h3 {
    font-size: 22px;
    color: whitesmoke;
    border: 1px solid rgb(234, 225, 241);
    background-color: rgb(0, 0, 0);
    border-radius: 5px;
    text-align: left;
    padding: 2px 20px;
}


li {
    font-size: 22px;
    color: black
}

#container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1.5fr 1fr;
    gap: 50px;
    padding: 20px;

}

span {
    font-weight: bold;
    color: white
}

#education {
    background-color: #22240b;
    color: #aeb374;
    border-radius: 30%;
    text-align: center;
    padding: 30px 10px 20px 10px;
    ;
}

#Certification {
    padding-top: 20px;
    background-color: #22240b;
    color:#aeb374;
    border-radius: 30%;
    text-align: center;
    padding: 30px 10px 20px 10px
}

#hobbies {
    background-color: #22240b;
    color: #aeb374;
    border-radius: 30%;
    text-align: center;
    padding: 30px 10px 20px 10px;
}

#languages {
    background-color: #22240b;
    color: #aeb374;
    border-radius: 30%;
    text-align: center;
    padding: 30px 10px 20px 10px;

}

#education #Certification #languages #hobbies {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    

}

#hobbies #languages {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
}

@media  (max-width: 800px) and (min-width: 400px) {
    #container {
        display: flex;
        flex-direction: column;
        
    }

    #container-first {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 0.2fr ;
    align-items: center;
    }
    .heading {
        grid-area: 1/1/2/4;
        text-align: left;
}
img { grid-area: 1/3/2/4;}
.main {text-align: left;}
}

@media (max-width:490px){
    #container {display: flex;
    flex-direction: column;
    gap:20px;
    
}

img {display: contents;}

.main {text-align: center;}
 .heading {
        
        text-align: center;
}
.nav li { display:none;}
}
