.customized-modal {
    background-color: #ff6643d9;
    min-height: 100vh;
    display: none;
}
.customized-modal article {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 700px;
    text-align: center;
    background: black;
}
.customized-modal h3 {
    margin: 10px auto 30px auto;
    font-size: 38px;
    width: 100%;
    font-weight: 900;
    font-family: serif;
    font-style: italic;
    text-shadow: 1px 3px 0px #f96645;
    color: #f3c1c1;
    font-size: 42px;
}
p {
    font-size: 18px;
    color :white;
}
h4 {
    font-size: 2rem;
    color: #bfbfbf;
    text-shadow: var(--orange) 2px 3px 3px;
    margin: 23px 0px;
    font-style: italic;
}
ul li {
    color: white;
    list-style: auto;
}
ul li a {
    color: #ff7c5f;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.5s ease-in-out;
}
ul li a:hover {
    letter-spacing: 1.5px !important;
    color : white!important;
}
body {
    background-color: #ff6643d9;
}
.see-all {
    width: 300px;
    background-color: #9d4e4e;
    line-height: 43px;
    text-decoration: none;
    display: block;
    height: 49px;
    margin: auto 15px;
    margin-bottom: 20px;
    text-align: center;
    font-size: 32px;
    border-radius: 12px;
    transition :all 0.5s ease-in;
    animation: bounce 2s ease-in-out infinite;
}
#article-not-found h5 {
    font-size: 4.25rem;
    color: #ff6947;
    font-weight: 700;
    font-style: italic;
    text-decoration: underline 10px solid #ff6947;
}
#article-not-found h5 span {
	font-size: 4.5rem;
    color : white;
}
@keyframes bounce {
    0% {
        transform: scale(0.8);
        background-color: #543730f0;
    }
    50% {
        transform: scale(1.2);
        background-color: #ff66435d;
    }
    0% {
        transform: scale(1);
        background-color: #ff664383;
    }
}
.see-all:hover {
    background-color: #f96645;
    color :black;
    font-weight: 900;
}
.force-show {
    display: flex !important;
}