/* GENERALITE */

:root {
    --main-white: rgb(252, 252, 243);
    --main-aside: rgb(172, 176, 181);
    --main-blue: #45567d;
    --main-grey: #303841;
    --main-gold: yellow;
    --opacity: 0.2
}

@font-face {
    font-family: "MyPerpetua";
    src: url(font/perpetua.ttf);
}


@font-face {
    font-family: "MyPapyrus";
    src: url(font/papyrus.ttf);
}



/* LAYOUT */



body {
    margin: 0;
    color: var(--main-white);
    font-size: 20px;
    font-family: "MyPerpetua";
    background-image: url(/img/ind.jpg);
    overflow: hidden;
    height: 100vh;
    width: 100vw;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}



#banner {
    margin-left: 160px;
    display: flex;
}

#enter {
    margin-bottom: 100px;
    display: flex;
    justify-content: center;
}

#enter a {
    padding: 6px 12px;
    border-radius: 15px;
    border: var(--main-grey) solid 1px;
    font-family: "MyPerpetua";
    font-size: 27px;
    text-decoration: none;
    color: var(--main-grey);
    background-color: var(--main-white);
}


#enter a:hover {
    background-color: var(--main-grey);
    color: var(--main-white);
    cursor: pointer;
}

/* H */

h1, h2, h3 {
    font-family: "MyPapyrus";
    font-weight: bold;
    color: var(--main-white);
}

h1 {
    margin-bottom: 12px;
}

h2 {
    margin-bottom: 12px;
}

h2  {
    font-size: 1.37em;
    margin-top: 0px;
}

h3{
    font-size: 1.25em;
}

a {
    text-decoration: none;
}

/* RESPONSIVE */

@media screen and (max-width: 900px) {
    body {
        padding: 2px;
    }

    main {
        width: 100%;
    }

    #banner {
        justify-content: center;
        margin: 0px;
    }

    h1, h2, h3 {
        text-align: center;
        margin-bottom: 18px;
    }
}