::-webkit-scrollbar {
    width: 0px;
}

body {
    font-family: 'Arial', sans-serif;
    /* background-color: #d388cd3b; */
    background: #0b0a35;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    padding-bottom: 30em;
}

@media(max-width:768px) {
    body {
        height: 70vh;
    }
}

#certificate {
    background-color: #fafafa;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    width: 100%;
    text-align: center;
    animation: fadeIn 0.5s ease-in-out;
    margin-top: 30em;
}

@media(max-width:768px) {
    #certificate {
        width: 80%;
    }
}

#logo-container {
    max-width: 100%;
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

#company-logo {
    width: 200px;
    height: 200px;
}

#download-button {
    background-color: #4CAF50;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    margin-top: 20px;
    display: inline-block;
    border-radius: 5px;
    transition: background-color 0.3s ease-in-out;
}

#download-button:hover {
    background-color: #45a049;
}

#signatures {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.signature-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 40%;
}

.signature {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    transition: transform 0.3s ease-in-out;
}

.signature:hover {
    transform: scale(1.05);
}

.signature-label {
    margin-top: 10px;
    color: #777;
    font-size: 14px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@media only screen and (max-width: 600px) {
    #certificate {
        padding: 10px;
    }
}

.company-seal {
    height: 100px;
    width: 100px;
    margin-top: 20px;
}


/* Highlight Animation */

@keyframes highlight {
    from {
        background-color: #fff;
    }

    to {
        background-color: #3498db;
        color: #fff;
    }
}

.highlight-name {
    display: inline;
    animation: highlight .5s infinite alternate;
    border-radius: 20px;
    padding: 5px;
}