.blog-title {
    font-weight: bolder;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: black;
    border-radius: 10%;
    font-variant: small-caps;
    border: 2.5px groove white;
    transition: all .5s ease;
}
.content img {
    border-radius: 10%;
    display: inline-block;
    border: 2.5px solid white;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    width: 600px;
    margin: 0 auto;
    margin-bottom: 5px;
    transition: all .5s ease;
}
.content img:hover {
    transform: scale(1.15);
}
.media {
    background-color: black;
    box-sizing: content-box;
    border: 2.5px solid white;
    padding: 10px;
    margin-bottom: 30px;
}
.glossary {
    list-style: none;
    display: grid;
    grid-template-columns: auto auto auto;
    row-gap: 10px;
    background-image: url(../images/course-hover.jpg);
    background-color: black;
    border: 2.5px solid white;
    padding: 20px;
    position: relative;
    bottom: 30px;
    transition: all .5s ease-out;
}
.entry {
    margin: 7.5px;
    background-color: rgba(0, 0, 0, 0.8);
    border: 2.5px solid white;
    height: min-content;
    border-radius: 24%;
    font-size: 30px;
    padding: 5px;
    text-align: center;
    transition: all .3s ease;
    z-index: 1;
}
.entry a {
    text-decoration: none;
    color: white;
    transition: all .5s ease;
}
.entry:hover {
    transform: scale(1.15);
    background-color: white;
    border: 2.5px solid black;
}
.entry:hover a {
    color: black;
}
.content span {
    display: flex;
    justify-content: center;
    align-items: center;
    font-variant: small-caps;
    background-color: black;
    border-top-right-radius: 10%;
    border-top-left-radius: 20%;
    border: 2.5px solid white;
    transition: all .5s ease-out;
}
.heading:hover {
    background-color: white;
    border: 2.5px solid black;
    color: black;
}
.gh-link {
    display: flex;
    background-color: rgba(0, 0, 0, 0.8);
    border: 2.5px solid white;
    width: fit-content;
    height: min-content;
    border-radius: 24%;
    font-size: 30px;
    color: white;
    padding: 5px;
    margin: auto;
    justify-content: center;
    align-items: center;
    transition: all .5s ease;
    
}
.gh-link:hover {
    transform: scale(1.15);
    background-color: white;
    border: 2.5px solid black;
}
.gh-link:hover a {
    color: black;
}
.gh-link a {
    color: white;
    text-decoration: none;
}
