body {
    background-color: aliceblue;
}

#headP {
    font-family: 'Trebuchet MS', sans-serif;
    font-size: 20px;
    color: #333;
    font-weight: bold;
    text-align: center;
}

.buttonContainer {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

#reportButton {
    align-items: center;
    appearance: none;
    background-color: #fff;
    border-radius: 24px;
    border-style: none;
    box-shadow: rgba(0, 0, 0, .2) 0 3px 5px -1px,rgba(0, 0, 0, .14) 0 6px 10px 0,rgba(0, 0, 0, .12) 0 1px 18px 0;
    box-sizing: border-box;
    color: #3c4043;
    cursor: pointer;
    display: inline-flex;
    fill: currentcolor;
    font-family: "Google Sans",Roboto,Arial,sans-serif;
    font-size: 14px;
    font-weight: 700;
    height: 48px;
    justify-content: center;
    letter-spacing: .25px;
    line-height: normal;
    max-width: 100%;
    overflow: visible;
    padding: 2px 24px;
    position: relative;
    text-align: center;
    text-transform: none;
    transition: box-shadow 280ms cubic-bezier(.4, 0, .2, 1),opacity 15ms linear 30ms,transform 270ms cubic-bezier(0, 0, .2, 1) 0ms;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    width: auto;
    will-change: transform,opacity;
}

#reportButton:hover:enabled {
    background: #F6F9FE;
    color: #174ea6;
}

#reportButton:active:enabled {
    box-shadow: 0 4px 4px 0 rgb(60 64 67 / 30%), 0 8px 12px 6px rgb(60 64 67 / 15%);
    outline: none;
}

#reportButton:focus {
    outline: none;
    border: 2px solid #4285f4;
}

#reportButton:not(:disabled) {
    box-shadow: rgba(60, 64, 67, .3) 0 1px 3px 0, rgba(60, 64, 67, .15) 0 4px 8px 3px;
}

#reportButton:not(:disabled):hover {
    box-shadow: rgba(60, 64, 67, .3) 0 2px 3px 0, rgba(60, 64, 67, .15) 0 6px 10px 4px;
}

#reportButton:not(:disabled):focus {
    box-shadow: rgba(60, 64, 67, .3) 0 1px 3px 0, rgba(60, 64, 67, .15) 0 4px 8px 3px;
}

#reportButton:not(:disabled):active {
    box-shadow: rgba(60, 64, 67, .3) 0 4px 4px 0, rgba(60, 64, 67, .15) 0 8px 12px 6px;
}

#reportButton:disabled {
    background: #666;
    box-shadow: rgba(60, 64, 67, .3) 0 1px 3px 0, rgba(60, 64, 67, .15) 0 4px 8px 3px;
    cursor: not-allowed;
}

.wrapper {
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.checkmark__circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 2;
    stroke-miterlimit: 10;
    stroke: #7ac142;
    fill: none;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: block;
    stroke-width: 2;
    stroke: #fff;
    stroke-miterlimit: 10;
    margin: 10% auto;
    box-shadow: inset 0px 0px 0px #7ac142;
    animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
}

.checkmark__check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes scale {
    0%, 100% {
        transform: none;
    }
    50% {
        transform: scale3d(1.1, 1.1, 1);
    }
}

@keyframes fill {
    100% {
        box-shadow: inset 0px 0px 0px 30px #7ac142;
    }
}

.info-modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

.info-content {
    font-family: 'Trebuchet MS', sans-serif;
    text-align: center;
}

.close-button {
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 10px;
}

.siteFooter {
    position: fixed;
    bottom: 0;
    padding-top: 10px;
    width: 100%;
    height: 78px;
    color: #9B9B9B;
    background-color: aliceblue;
}

.footerContent {
    display: flex;
    padding: auto;
    margin: 0px;
    text-align: center;
    align-items: center;
    font: 25px Georgia, "Times New Roman", Times, serif;
    font-size: 14px;
    width: 100%;
    height: 100%;
}
#footText {
    display:inline;
    float: right;
    padding-left: 5px;
    padding-right: 10px;
}
.footerContent img {
    height: 35px;
    width: auto;
    float: left;
}

.info-box {
    display: flex;
    background-color: #3498db;
    color: #fff;
    width: auto;
    height: 10px;
    padding: 5px 5px;
    border-radius: 5px;
    margin-right: 10px;
    font-size: 14px;
    text-align: center;
    align-items: center;
    cursor: pointer;
    float: right;
}

.info-box:hover {
    background-color: #2980b9;
}

#repoLinkButtonImage {
    height: 30px;
    width: auto;
}