@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');

.body{
    background-color: #cfc9c0;
    font-family: "Manrope", sans-serif;
    font-optical-sizing: auto;
    /*font-weight: <weight>;*/
    font-style: normal;
}

.test-div{
    color: white;
    background-color: black;
}

.main-body{
    background-color:#cfc9c0;
}

a{
    text-decoration: none;
}

.check-out-more {
    /* Make the text bold */
    color: #e69431;           /* Set the text color (red in this case) */
    animation: blink 1s step-start infinite;  /* Apply the blinking animation */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

@keyframes blink {
    50% {
        color: #757230;  /* At 50% of the animation cycle, make the text invisible */
    }
}


.site-under-construction{
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin : 10px;
    background-color: #f6c549;
    
    text-align: center;
}

