* {
    font-family: 'Lato', sans-serif;
    color: rgb(224, 224, 224);
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;
    /* border: 1px solid white; */
}

body {
    background-image: url("./assets/background.png");
    background-size: 13%;
    background-repeat: repeat;
    background-attachment: fixed;
    animation: moveBackground 100s linear infinite;
}

/* Used to give "scrolling effect" to background */
@keyframes moveBackground {
    0% {
        background-position: 0% 0%;
    }

    100% {
        background-position: -100% -100%;
    }
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    row-gap: 20px;
    height: max-content;
    margin-top: 60px;
}

.logo {
    width: 300px;
    height: auto;
}

.box {
    width: 50%;
    min-width: 600px;

    margin: 0 auto;
    margin-bottom: 80px;
    border-radius: 12px;
}

/* Formatting for privacy policy content */
.box h3,
.box h4,
.box p,
.box .sep {
    margin-bottom: 16px;
}

.sep {
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.5);
}

.box h1 {
    margin-bottom: 10px;
}

.box ul,
.box ol {
    margin-left: 30px;
    margin-bottom: 20px;
}

.text-center {
    text-align: center;
}

/* Import Font Classes */
.poppins-thin {
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    font-style: normal;
}

.poppins-extralight {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: normal;
}

.poppins-light {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: normal;
}

.poppins-regular {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.poppins-medium {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.poppins-semibold {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
}

.poppins-bold {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.poppins-extrabold {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-style: normal;
}

.poppins-black {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-style: normal;
}

.poppins-thin-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    font-style: italic;
}

.poppins-extralight-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: italic;
}

.poppins-light-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: italic;
}

.poppins-regular-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: italic;
}

.poppins-medium-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: italic;
}

.poppins-semibold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: italic;
}

.poppins-bold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: italic;
}

.poppins-extrabold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-style: italic;
}

.poppins-black-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-style: italic;
}