/* css Zen Garden default style v1.02 */
/* css released under Creative Commons License - http://creativecommons.org/licenses/by-nc-sa/1.0/  */

/* This file based on 'Tranquille' by Dave Shea */
/* You may use this file as a foundation for any new work, but you may find it easier to start from scratch. */
/* Not all elements are defined in this file, so you'll most likely want to refer to the xhtml as well. */

/* Your images should be linked as if the CSS file sits in the same folder as the images. ie. no paths. */


/* basic elements */
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&family=Great+Vibes&family=Gwendolyn:wght@400;700&display=swap');



html {
    margin: 0;
    padding: 0;
}

body {
    position: relative;
    font-family: "Great Vibes", cursive;
    font-size: 1rem;
    color: #3c2f2f;
    background-color: white;
    overflow-x: hidden;
}

/* elemento que segura o pergaminho */
body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 5rem;
    width: 85%;
    height: 88%;
    min-height: 100vh;
    background-image: url('pergaminho.jpg');
    background-repeat: no-repeat;
    background-size: auto 100%;
    background-position: top center;

    z-index: -1;
    clip-path: inset(0 0 100% 0);
    animation: desenrolarPergaminhoFundo 4s ease-out forwards;
}

@keyframes desenrolarPergaminhoFundo {
    0% {
        clip-path: inset(0 0 100% 0);
    }

    100% {
        clip-path: inset(0 0 0 0);
    }
}

.page-wrapper {
    clip-path: inset(0 0 100% 0);
    opacity: 0;
    animation: desenrolarConteudo 5s ease-out forwards;
    animation-delay: 0.3s;
    position: relative;
    z-index: 1;

}

@keyframes desenrolarConteudo {
    0% {
        clip-path: inset(0 0 100% 0);
        opacity: 0;
    }

    100% {
        clip-path: inset(0 0 0 0);
        opacity: 1;
    }
}

p {
    font-family: "Great Vibes", cursive;
    font-weight: 400;
    font-size: 1.8rem;
    color: #5b4b3a;
    margin-top: 10px;
    text-align: justify;
}

acronym {
    font-family: "Dancing Script", cursive;
    font-style: italic;
    font-weight: bold;
}

h3 {
    font: bold 2.5em "Dancing Script", cursive;
    letter-spacing: 1px;
    color: #5b3a29;
    font-weight: bold;
    line-height: 0.5em;
}

a:link {
    font-weight: bold;
    text-decoration: none;
    color: #6e0f0f;
    text-decoration: underline;
}

a:visited {
    font-weight: bold;
    text-decoration: none;
    color: #1e40ff;
}

a:hover,
a:focus,
a:active {
    text-decoration: underline;
    color: #9685BA;
}

abbr {
    border-bottom: none;
}

.header h1 {
    text-align: center;
    font-size: 2.8rem;
}

.header h2 {
    font-family: "Dancing Script", cursive;
    font-size: 2rem;
    text-align: center;
    white-space: nowrap;
}

.header {
    border: 3px solid #5b3a29;
    border-radius: 10px;
    width: 30%;
    box-sizing: border-box;
    position: relative;
    top: 18rem;
    left: 15rem;
}
.summary {
    border: 3px solid #5b3a29;
    border-radius: 10px;
    width: 32%;
    box-sizing: border-box;
    position: relative;
    top: 6.5rem;
    left: 48rem;
}

.summary p {
    font-family: "Dancing Script", cursive;
    font-size: 1.5rem;
    color: black;
    font-weight: bold;
    text-align: left;
}

.preamble {
    margin: 8rem 15rem 0 12rem;
    line-height: 1.7em;
}

.explanation, .participation, .benefits {
        margin: 0 15rem 0 12rem;
        line-height: 1.7em;

}

.requirements {
    margin: 0 15rem 19rem 12rem;
    line-height: 1.8em;
}

.supporting {
    padding-left: 10px;
    margin-bottom: 40px;
}

.footer {
    width: 30%;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid #5b3a29;
    font-family: "Dancing Script", cursive;
    font-size: 1.5rem;
    color: #5b3a29;
    border-radius: 3px;
    background-color: #f7e3be;
}

.footer a:link,
.footer a:visited {
    margin: 0 2rem;
    font-weight: bold;
    text-decoration: underline;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer a:hover {
    color: #be9931;
    transform: scale(1.1);
}

.sidebar li a {
    font-family: "Gwendolyn", cursive;
    font-size: 1.8rem;
    color: #fcbd10;
}

.sidebar li a:hover {
    color: #fff0c2;
    text-decoration: underline;
}

.sidebar {
    width: 100%;
    box-sizing: border-box;
}

.wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: space-between;
}

/* Blocos internos */
.design-selection,
.design-archives,
.design-resources {
    width: 30%;
    background-color: #f4f4f4;
    padding: 10px;
    border: 1px solid #ccc;
    box-sizing: border-box;
    line-height: 2rem;
}

.extra1 {
    position: absolute;
    top: 40px;
    right: 0;
    width: 148px;
    height: 110px;
}


