body{
    background: grey;
    text-align: center;
}

a{
    color: antiquewhite;
    font-weight: bold;
    text-decoration: none;
}

#nav {
    border-radius: 10px;
    background: linear-gradient(red, yellow);
    margin: 25px;
    padding: 20px;
}

#nav ul{
    display: initial;
    list-style: none;
    padding-left: 0;
}

#nav ul li {
    display: inline-block;
    padding: 10px 10px 10px 10px;
    margin-right: 5px;
    background: linear-gradient(purple, orange);
    transition: ease-in-out .5s;
    border-radius: 3px;
}

#nav ul li:last-child {
    margin-right: 0;
}

.toggleMenu {
    display: none;
    font-size: 36px;
}

.container {
    
    display: flex;
    justify-content: center;
    margin: 25px;
    
}

.article {
    max-width: 990px;
    border-radius: 5px;
    padding: 20px 50px;
    text-align: left;
    background: linear-gradient(to top, red, yellow);
}
.article h2 {
    border-radius: 5px;
    background: linear-gradient(black, purple);
    padding: 15px;
    text-align: center;
    transition: ease-in-out 0.25s;
}

.article .text {
    border-radius: 5px;
    background: linear-gradient(60deg, black, purple);
    padding: 25px;
    margin-top: 20px;
}

.article img {
    border-radius: 5px;
    width: 100%;
}

@media screen and (min-width: 993px) {
    #nav ul li:hover {
        background-color: rgb(27, 90, 90);
        transform: scale(1.25);
        position: relative;
        transition: ease-in-out .5s;
        -webkit-box-shadow: 0px 0px 15px -1px rgba(0,0,0,1);
        -moz-box-shadow: 0px 0px 15px -1px rgba(0,0,0,1);
        box-shadow: 0px 0px 15px -1px rgba(0,0,0,1);
        z-index: 1;
    }
}

@media screen and (max-width: 992px) {
    .toggleMenu {
        display: initial;
    }
    #nav ul {
        display: none;
        margin-bottom: 0;
    }
    #nav ul li {
        display: block;
        margin-bottom: 5px;
        margin-right: 0;
    
    }
    #nav ul li:last-child {
        margin-bottom: 0;
    }
}