@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700&family=Great+Vibes&family=Pinyon+Script&family=Roboto:wght@300;400;500;700;900&display=swap');
body {
    font-family: 'Roboto', sans-serif;
    color: #323232;
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
  
.certificate-container {
    margin: 55px 0 20px 0;
    width: 100%;
    display: flex;
    justify-content: center;
}
.certificate {
    width: 800px;
    height: 554px;
    padding: 15px 20px;
    position: relative;
    /* z-index: -1; */
}
.certificate:after {
    content: '';
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    position: absolute;
    background-image: url(certificate-bg.webp);
    background-size: 100%;
    z-index: -1;
}
.text-uppercase{text-transform: uppercase;}
.certificate-title {
    text-align: center;
    margin: 1em;
    font-size: 1.1em;
    font-weight: 500;
}
.certificate-body {
    width: 750px;
    height: 524px;
    padding: 60px;
    text-align: center;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
}

h1 {
    font-weight: 400;
    font-size: 3.2em;
    color: #394f6a;
    font-family: 'Cinzel', serif;
    margin: 0;
    line-height: 1em;
}
.certificate-subtitle{font-size: 1.4em;font-family: 'Cinzel', serif;}
.student-name {
    font-size: 3.8em;
    color: #c08c20;
    font-family: 'Great Vibes', cursive;
    border-bottom: 1px solid;
    display: inline-block;
    padding: 0 .5em .05em;
    margin-bottom: .4em;
    align-self: center;
}

.certificate-content {
    margin: 0 auto;
    width: 90%;
    font-style: italic;
    color: #727579;
    letter-spacing: .5px;
}
.row {
    display: flex;
    justify-content: space-between;
}
.col-md-6 {
    width: 50%;
    flex: 1 1 50%;
    padding: 0 .5em;
}

.certificate-footer.text-muted {color: #727579;margin-top: auto;}








