/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

body {
    display: flex;
    flex-direction: column;
    height: 100vh;
}

header {
    background-color: rgb(247, 247, 250);
    text-align: center;
    padding: 17px 0;
    font-size: 16px;
    line-height: 16px;
}

.link-button {
    background-color: transparent;
    border: none;
    cursor: pointer;
    display: inline;
    outline: 0;
    vertical-align: middle;
}

.flag {
    width: 24px;
    height: 24px;
}

main {
    flex: 1 0 auto;
}

li, a, button {
    text-decoration: none;
    color: black;
}

.logo {
    width: 16px;
    height: 16px;
}

.uni_height {
    height: 16px;
}

.nav__links {
    list-style: none;
}

.nav__links li {
    display: inline-block;
    padding: 0 20px;
}

.nav__links li a {
    transition: all 0.3s ease 0s;
}

.nav__links li a:hover {
    color: white;
}

.align-top {
    vertical-align: top;
}

footer {
    background-color: rgb(247, 247, 250);
    text-align: center;
    padding: 12px 0;
    font-size: 16px;
    line-height: 16px;
}

.content__main {
    display: flex;
    padding: 12px;
    background-color: #ffffff;
}

.about,
.policy {
    padding-top: 2rem;
    width: 60%;
    margin: 0 auto;

    h1 {
        text-align: center;
        margin-bottom: 2rem;
        padding: 1rem;
    }

    .aboutt,
    .policyt {
        font-size: 1.2rem;
    }

    p {
        margin-bottom: 1rem;
    }
}

.aboutt {
    text-align: center;
}