* {

    box-sizing: border-box;


}

body{
    background: rgb(163,144,46);
    background: linear-gradient(333deg, rgba(163,144,46,1) 0%, rgba(185,165,63,1) 36%, rgba(231,212,111,1) 100%);
    min-height: 100vh;
    margin: 0px;
    font-family: Times New Roman;
}

main{
    margin: 35px;
}

footer{
    border-top-style: solid;
    border-top-color: white;
    background: rgb(163,144,46);
    background: linear-gradient(160deg, rgba(163,144,46,1) 0%, rgba(185,165,63,1) 36%, rgba(231,212,111,1) 100%);
    padding: 10px;
}

footer>p{
    margin: 4px;
}

a:hover >.infobulle {
    display: inline-block;
}

.infobulle {
    display: none;
    position: absolute;
    padding: 2px;
    width: 100px;
    border-radius: 15px;
    box-shadow: 5px 5px 5px gray;
    background-color: white;
    z-index: 1;
    text-align: center;
    margin-left: -60px;
    margin-top: 15px;
    color:black
}

img{
    display: flex;
    border-radius: 5px;
    width: 80%;
    height: 80%;
    margin: 10px auto;
    max-width: 800px;
}

#source{
    background-color: white;
    border-style: solid;
    border-radius: 15px;
    border-color: white;
    padding: 10px 30px 30px 30px;
    margin: 20px auto;
    max-width: 600px;
}

#source>h2{
    margin:10px auto;
    padding: 0px 10px;
    border-bottom-color: black;
    border-radius: 0px;
    
}

#source li{
    list-style-type: none;
    margin: 2px;
}

#source p{
    list-style-type: none;
}

.widget{
    margin: auto;
    width: 80%;
    height: 80%;
    object-position: center;
}

h2{
    border-style: solid;
    border-radius: 10px;
    border-color: white;
    padding: 10px;
    text-align: center;
    margin-bottom: 30px;
}

a{
    font-style: italic;
    color: #474667;
}

p{
    text-align: justify;
}

.blockquot{
    background-color: white;
    border-style: dashed;
    border-width: thin;
    margin: 20px 50px;
}

b{
    font-weight: 900;
}

@media all and (orientation: portrait)
{
    main{
        margin: 50px;
    }
    p{
        margin: 30px;
    }
    div{
        margin: 5px;
    }
    h2{
        margin-top: 50px;
    }
    #source{
        margin-top: 50px;
    }
    p{
        margin: 20px 50px;
        font-size: small;
    }
    blockquote{
        font-size: small;
    }
    li{
        font-size: small;
    }
}