@import "https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap";
@import "docs.css";

@tailwind base;
@tailwind components;
@tailwind utilities;

html {
    overflow: -moz-scrollbars-none;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

html::-webkit-scrollbar {
    display: none;
}

html, body {
    margin: 0;
    padding-top: 1em;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100vh;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #1a202c;
    color: white;
}

.bg-navbar{
    background-color: #283241;
    margin: 0 auto;
    border-radius: 2em;
    justify-content: center;
    align-items: center;
    padding: 1em 2em;
    display: flex;
    box-shadow: 0 1px 0.7em #5f697d;
    width: auto;
    min-width: fit-content;
    height: auto;
    overflow: visible;
}

.content-navbar{
    align-items: center;
    gap: 2em;
    justify-content: flex-start;
    margin-left: auto;
    margin-right: auto;
    display: flex;

}

a{
    text-decoration: none;
}

a:hover{
    background: none;
    box-shadow: none;
}

a:visited{
    color: inherit;
}

/*home.php*/

.presentation{
    background-color: #283241;
    margin: 7em auto 10em auto;
    border-radius: 1em;
    align-items: center;
    padding: 1em;
    display: flex;
    box-shadow: 0 1px 0.7em #5f697d;
    width: 60%;
    justify-content: space-between;
}

.presentation-gauche{
    margin: 1em 0 1em 1em;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.img-gauche{
    width: 60%;
    height: auto;
    border-radius: 1em;
}

p.titre-gauche{
    margin-top: 0.5em;
    font-size: x-large;
    white-space: nowrap;
}

.presentation-droit {
    margin-right: 1em;
    display: flex;
    flex-direction: column;
    align-items: center;
}

p.titre-droit{
    margin: 1em 1em 0.7em 0;
    font-size: x-large;
    text-decoration: underline;
}

p.description-droit{
    width: 60vh;
    text-align: justify;
}

/*more.php*/

.separator {
    border-left: 1px solid white;
    height: 100%;
    margin: 0 1em;
}

.more-container{
    background-color: #283241;
    border-radius: 1em;
    box-shadow: 0 1px 0.7em #5f697d;
    margin: 2em auto;
    align-items: center;
    padding: 2em;
    display: flex;
    flex-direction: row;
    width: 85%;
    justify-content: space-between;
}

.img-more{
    width: 25%;
    margin-right: 2em;
    border-radius: 1em;
}

.more-text-container {
    margin: 0 2em 0 2em;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: justify;
    flex: 1;
}

p.more-text{
    margin: 0.2em 0;
}


footer{
    background-color: #283241;
    border-top-left-radius: 1em;
    border-top-right-radius: 1em;
    padding: 0.3em 0 0.3em 0;
    text-align: center;
    margin-top: auto;
    font-size: small;
    color: rgba(255, 255, 255, 0.5);
}
