/* Eu desprezo CSS. */
body {
    background-color: #333333;
    color: #FFFFFF;
    font-family: "Segoe UI";
    margin: 0;
    padding: 0;     
    background: radial-gradient(#18221a, #04100d)
}
#buttonToSpeak {
    background: var(--container-background);
    padding: 8px;
    margin: 8px;
    border: 1px solid transparent;
    border-image: url(https://deepwoken.co/border.png) 45%;
    border-image-width: 15px;
    border-image-outset: 2px;
    background-color: rgb(119, 112, 100);
    display: flex;
    justify-content: center;
}
#buttonToSpeak:hover {
    cursor: pointer;
}
#destroymanIII {
    animation: fadeIn 5s ease-in;
}
.destroymanIIIContainer {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
    width: 400px;
    position: relative;
    left: 40%;
}
.speechBubble {
    display: none;
    position: absolute;
    background: papayawhip;
    color: #222;
    border-radius: 12px;
    border-image: url(https://deepwoken.co/border.png) 45%;
    border-image-width: 15px;
    border-image-outset: 2px;
    padding: 16px 24px;
    max-width: 320px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.10);
    font-size: 1em;
    margin: 24px;
    left: 20%;
    top: 270px;
}
#buttonToSpeakContainer {
    display: flex;
    justify-content: center;
}
h1 {
    color: black;
    font-size: 80px;
    font-family: "Brush Script MT";
    text-align: center;
    animation: fadeIn 4s ease-in;
}
h2 {
    color: black;
    font-family: "Times New Roman";
    margin: 20px;
}
#h1Container {
    position: relative;
    background: papayawhip;
    width: 37%;
    left: 31.5%;
    border-image: url(https://deepwoken.co/border.png) 45%;
    border-image-width: 30px;
    border-image-outset: 2px;
    animation: fadeIn 2s ease-in;
}
p, li {
    color: black;
    font-family: "Times New Roman";
    margin: 20px;
}
a {
    color: black;
}
a:hover {
    color: #333333
}
.pContainer {
    display: inline-block;
    background: papayawhip;
    margin: 48px;
    width: 37%;
    border-image: url(https://deepwoken.co/border.png) 45%;
    border-image-width: 15px;
    border-image-outset: 2px;
    vertical-align: top;
}
#pContainerUltimo {
    position: relative;
    bottom: 328px;
}
.pContainerContainer {
    position: relative;
    background: radial-gradient(#2f302f, #080808);
    border-image: url(https://deepwoken.co/border.png) 45%;
    border-image-width: 15px;
    border-image-outset: 2px;
    left: 20%;
    padding: 20px 0px 20px 52px;
    height: 880px;
    width: 60%;
}
#destroymanIIIChest {
    position: relative;
    border-image: url(https://deepwoken.co/border.png) 45%;
    border-image-width: 15px;
    border-image-outset: 4px;
    margin: 20px 0px 20px 0px;
    padding: 0;
    width: 50%;
    left: 25%;
}
#footer {
    position: relative;
    bottom: -220px;
    background-color: #080808;
    width: 100%;
    height: 500px
}
#linksExternosContainer {
    display: flex;
    justify-content: center;
    position: relative;
    bottom: 70%;
}
.wikiLogo {
    height: 50px;
    width: 50px;
    margin: 0px 10px 0px 0px
}
#wikiLink, #vilaoLink{
    margin: 20px;
    text-align: center;
}
#wikiLink:link, #vilaoLink:link, #wikiLink:visited, #vilaoLink:visited {
    color: papayawhip;
}
#wikiLink:hover, #vilaoLink:hover {
    color: #ecdcbb;
}
footer p {
    color: papayawhip;
}
.fade-in {
    opacity: 0;
    transition: opacity 1.7s;
}
.fade-in.visible {
    opacity: 1;
}
#gallery {
    display: flex;
    justify-content: center;
    justify-self: center;
    align-items: center;
    background: radial-gradient(#2f302f, #080808);
    border-image: url(https://deepwoken.co/border.png) 45%;
    border-image-width: 15px;
    border-image-outset: 2px;
    width: 62.8%;
}
.galleryButton {
    position: absolute;
    border-radius: 1000px;
    background-color: #333;
    opacity: 0.3;
    color: #dddddd;
    height: 50px;
    width: 50px;
    cursor: pointer;
}
#forwardGallery {
    right: 30%;
}
#backwardGallery {
    left: 30%;
}
#imgInGallery {
    height: 300px;
    margin: 20px;
}
#galeriaTituloContainer{
    justify-self: center;
    justify-content: center;
    align-items: center;
    border-image: url(https://deepwoken.co/border.png) 45%;
    border-image-width: 15px;
    border-image-outset: 2px;
    background-color: papayawhip;
    width: 400px;
}
#galeriaTitulo {
    justify-self: center;
    font-size: 60px;
}

@keyframes fadeIn {
    from {opacity: 0}
    to {opacity: 1}
}