@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap');
.certificate-card {
    background: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 20px;
    max-width: 1030px;
    width: 100%;
    text-align: center;
    margin: auto;
    
}

.certificate-card h2 {
    color: #333;
    margin-bottom: 20px;
}

.certificate-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.certificate-item {
    background: #e9ecef;
    border-radius: 8px;
    padding: 15px;
    text-align: left;
}

.certificate-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 10px;
}

.certificate-item h3 {
    margin: 0;
    color: #007bff;
}

.certificate-item p {
    margin: 5px 0 0 0;
    color: #555;
}
.navbar{
    margin: 10px;
    font-family: "Poppins", sans-serif;
}
.navbar ul{
    list-style-type: none;
    background-color: whitesmoke;
    text-decoration: none;
    padding: 0px;
    margin: 0px;
    justify-content: space-around;
    overflow: hidden;
}
.navbar a{
    color: black;
    text-decoration: none;
    display: block;
    text-align: center;
    padding: 15px;
}
.navbar a:hover{
    background-color: #1ddde8;
}
.navbar li{
    float: left
    
}