@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    user-select: none;
    outline: none;
}

html {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background-color: #8EE580;
}

body {
    font-family: "Poppins";
    max-width: 900px;
}

header {
    width: 100%;
    padding: 10px;
}

.logo {
    width: 90%;
    max-width: 200px;
}

.social {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.social span {
    font-weight: bold;
    font-size: 1.2rem;
}

.social a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-size: 13pt;
    color: white;
}

.social a img {
    width: 30px;
}

.progressBg {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: white;
    width: 100%;
    /* height: 30px; */
}

.progressBar {
    background-color: #f7a052;
    width: 77%;
    padding: 10px;
    /* height: 30px; */
}

.progressBg span {
    font-size: 12pt;
    text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
    margin-top: 2px;
    text-align: left;
}
