body
{

    background-color: #7c7a79;
    color:#ffffff;
}

.card-size
{
    margin-top: 15%;
    max-width:50em;
    margin-bottom:15%;
}

#main_menu 
{
    background-color: #ffffff;
}



.footer-link-color:link,.footer-link-color:visited,.footer-link-color:active
{
    color:white;
    text-decoration: none;
}

.footer-link-color:hover
{
    color:white;
    text-decoration: underline;
}

.rounded-corners
{
    border-radius: 5px;
    border: 2px solid #000000;
}

.container {
    position: relative;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    overflow-x: hidden;
}

.card {
    background-color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    padding: 20px;
    opacity: 0;
    transform: translateY(-20px);
    animation: fade-in 0.5s forwards;
}

.card-title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
    background-color: #f55225
;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: inline-block;
}

.card-text {
    font-size: 18px;
    margin-bottom: 20px;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    background-color: #f55225;
    color: #ffffff;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #f55225;
}

@keyframes fade-in {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@media screen and (max-width: 800px) {
    .card-title {
        display: block !important;
    }
}