<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {

  color: #f0f0f0;
  background-image: 
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
    url('images/bgzaire.JPG');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.navbar{
    display: none;
    padding: 20px 20px;
    background-color: #151515ea;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: 0.3s;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
}

.mainContent{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 30px;
    padding: 40px 20px;
    margin-top: 80px;
    height: 100vh;
}

.logo{
    width: 150px;
}

.mainContent h1{
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    color: #f0f0f0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 4rem;
}

.comment{
    font-size: 1.5rem;
    font-weight: 400;
    text-align: center;
    color: #f0f0f0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 2rem;
}

.btns{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    width: 100%;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1.2rem;
    transition: background-color 0.3s, color 0.3s;
}

.btns .link1{
    width: 30%;
    padding: 20px 40px;
    background:#f0f0f0;
    color: #eb4c08;
    text-align: center;
}

.btns .link2{
    width: 30%;
    padding: 20px 40px;
    background:#eb4c08;
    text-align: center;
}

.bottom{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    text-align: center;
    padding: 20px;
}

@media screen and (max-width: 768px) {

    body {

  color: #f0f0f0;
  background-image: 
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
    url('images/bgzaire.JPG');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
    .navbar{
        flex-direction: column;
        align-items: center;
        padding: 10px 0;
    }
    .mainContent h1{
        font-size: 3rem;
    }
    .mainContent .comment{
        font-size: 1.2rem;
    }
    .btns{
        flex-direction: column;
        gap: 20px;
    }
    .btns .link1, .btns .link2{
        width: 90%;
        padding: 15px 30px;
    }
    
}

@media screen and (max-width: 480px) {

    body {

  color: #f0f0f0;
  background-image: 
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
    url('images/bgzaire.JPG');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
    .navbar{
        padding: 10px 0;
    }
    .mainContent h1{
        font-size: 2.5rem;
    }
    .mainContent .comment{
        font-size: 1rem;
    }
    .btns{
        flex-direction: column;
        gap: 15px;
    }
    .btns .link1, .btns .link2{
        width: 95%;
        padding: 10px 20px;
    }
    
}


</pre></body></html>