/*Shared styling for legal-notice.html and privacy-policy.html*/

#page-wrapper {
    min-height: 100vh;
}

#legal-main {
    flex: 1;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 100px;
    box-sizing: border-box;
}

#legal-header {
    height: 100px;
    width: 100%;
    background-color: #2b2b2a;
    color: whitesmoke;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    z-index: 10;
    box-shadow: 0 0 10px 0 black;
}

#legal-header-content-width {
    max-width: 1920px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 0 24px;
    box-sizing: border-box;
}

#back-arrow-container {
    display: flex;
    align-items: center;
    gap: 8px;
    color: whitesmoke;
    text-decoration: none;
    cursor: pointer;
}

#back-arrow-container:hover {
    text-shadow: 0 0 6px gray;
}

#back-arrow {
    width: 24px;
    transform: rotate(180deg);
}

#legal-header h2 {
    margin: 0;
}

.legal-content {
    max-width: 900px;
    width: 100%;
    box-sizing: border-box;
    margin: 24px 20px;
    padding: 32px;
    background-color: rgb(235, 235, 235);
    border-radius: 16px;
    box-shadow: 0 0 20px 0 black;
    font-family: sans-serif;
    line-height: 1.6;
}

.legal-content h1 {
    font-family: "Pokemon Font";
    text-transform: capitalize;
    margin-top: 0;
}

.legal-content h3 {
    margin-bottom: 4px;
}

.legal-content section {
    margin-bottom: 24px;
}

.legal-content a {
    color: #2b2b2a;
}
