@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Fredericka+the+Great&display=swap');


* {
    margin: 0;
    box-sizing: border-box;
}


body {
    font-family: 'Fredericka the Great', cursive;
    padding: 20px;
    background: url('../image/wallpaper001.jpg') no-repeat center/cover;
}

.conteiner {
    margin: auto;
    max-width: 1400px;
    min-height: 1000px;
    border:  20px solid #5E531E;
    border-radius: 20px;
    padding: 30px;


    /* 
    https://projects.verou.me/css3patterns/#lined-paper
    by Sarah Backhouse 
    */
    background-color: #fff;
    background-image:
    linear-gradient(90deg, transparent 79px, #abced4 79px, #abced4 81px, transparent 81px),
    linear-gradient(#eee .1em, transparent .1em);
    background-size: 100% 1.2em;
}


h1 {
    text-decoration: underline;
}

h1, h2, p, li{
    color: rgb(19, 17, 17);
    text-align: center;
    line-height: 2rem;
    margin: 10px;
}

p {
    margin: 20px 0;
}

dt {
    font-weight: bolder;
}

p, dd {
    font-family: 'Fredericka the Great', cursive;
    color: #566E3F;
    font-weight: bold;
    font-size: 1em;
}

dl {
    margin-top: 50px;
    color: #5fc401;
    text-align: left;
    columns: 2;
    line-height: 2em;
    justify-content: space-between;
}
a, li {
    text-decoration: none;
    list-style: none;
}
a:visited {
    color: #998937;
}
a:hover {
    text-decoration: underline;
}


@media (max-width: 450) {

    body {
        padding: 10px;
    }

    .conteiner {
        width: 0px;
    }

    h1, h2,h3,p, a, li, dl,dt ,dd{
        font-size: 10px;
    }
    
    dl {
        margin-top: 15px;
    }
}