body > div > div,  body > div > div *{
    transition: all ease-in-out 0.4s;
}

.nav-text {
    font-family: "Modern Antiqua";
    font-weight: 700;
    font-size: 3em;
}

.carousel {
    margin-top: 60px;
    overflow: hidden;
}

.media-container {
    position: absolute; 
    top: 0; 
    bottom: 0; 
    left: 0; 
    right: 0; 
    margin: auto; 
    height: fit-content; 
    width: fit-content;
    padding-top: 4px;
}

.media-margin {
    margin-top: 30px;
}

.message {
    display: none;
}

.media-img {
    max-width: 100px;
    min-width: 60px;
    border-radius: 10px;
    border-style: solid;
    border-width: 4px; 
    border-color: rgba(135, 207, 235, 0.507);
}

.media-text {
    font-weight: 700;
    color: rgb(7, 14, 19);
    /* background-color: rgba(16, 46, 58, 0.336); */
    text-shadow: 0 0 10px rgba(237, 240, 241, 0.747);
}

@media screen and (max-width: 768px) {
    body > div > div,  body > div > div *{
        height: 0;
        opacity: 0;
    }

    .message {
        display: block;
        margin-top: 150px;
    }
}