@import url('https://fonts.googleapis.com/css2?family=Titillium+Web:wght@200;300;400;600;700&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Titillium Web', sans-serif;
    text-decoration: none;
    list-style-type: none;
    transition: all .3s ease;
}

:root {
    --main-color: #00122D;
    --btn-color: #39A7E5;
    --text-color: #000;
    --bg-color: #fff;
    --txt-white-op: #ffffff96;
}

::selection{
    background: var(--main-color);
    color: var(--bg-color);
}

body {
    position: relative;
    width: 100%;
    height: 100vh;
    background: linear-gradient(to right, #00122df3, #00122ddc), url('../images/section_categories/jonathan-chng-3R4vPrSB1c4-unsplash.jpg') no-repeat center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.filigramme {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.726);
    z-index: 1;
    opacity: 1;
}


.content-result{
    position: absolute;
    top: 30%;
    left: 25%;
    background-color: rgb(226, 226, 226);
    border-radius: 8px;
    border: none;
    width: 50%;
    height: max-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 100;
    animation: bouge 5s infinite;
}

table{
    width: 100% !important;
    padding: 2em !important;
    height: 150px;
}

p{
    text-align: center;

}
a{
    text-align: center;
    text-decoration: none;
}