
/* menu grid */
.grid{
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    background: url(images/menu_bg.png)  repeat center center/cover;
    background-size: 10%;
    height: 5rem;
    border-radius: 10px;
    grid-gap: 0;
    align-items: center;
    justify-content: center;
    
    box-shadow: 10px 30px 50px #525c5d;
}
/* menu button styling */
.grid a {
    display: block;
    display: flex;
    align-items: center;
    justify-content: center;
    
}
.grid .menu_bg{
    
    display: flex;
    align-content: center;
    justify-content: center;
    
}
.menu_bg {
    max-height: 100%;
    max-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    
}
/* #24a413 */
.bg_link{
    color: black;
    font-size: 1rem;
    font-weight: 900;
    transition: 1s;
    background-color: #60f66f;
    border-radius: 20px;
    height: 70%;
}
.bg_link:hover {
    background: url(images/menu_bg.png)  no-repeat center center/cover;
    color: white;
}
/* #60f66f */

/* logo-home */
/* #24a413 */
.ig {
    grid-column: 1 / span 2;
    color:black;
    font-size: 3rem;
    font-weight: 900;
    transition: 0.5s;
    border-radius: 20px;
    height: 100%;
    width: 80%;
    justify-self: center;
    background: url(images/1g2.jpg)  no-repeat center center/cover;
}
.ig:hover {
    background: url(images/menu_bg.png)  no-repeat center center/cover;
    color: white;
}
/* #60f66f */

/* Home header grid */
.main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 70px  20px 0 20px ;
    grid-gap: 20px;
}
/* scientist & wordmap */
.main-pic {
    grid-row: 2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin-top: 30px;

}
.word {
    grid-row: 2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin-top: 30px;
}
.word, .main-pic {
    border-radius: 20px;
}
.article-1 {
    grid-column: 1 / span 2;
    grid-row: 1;
    align-self: center;
    justify-self: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: white;
    border-radius: 15px;
    height: 100%;
    width: fit-content;
    padding: 10px 20px 20px 20px;

    
}
.article-1 div {
    padding-bottom: 18px;

}
.text {
    background: #564A64;
    margin-top: 15px;
    padding-top: 1rem;
    border-radius: 10px;
    color: #fff;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 1.5vw;
}
.b {
    font-weight: 900;
}
