@import url(/fonts.css);

body {
    margin: 0px;
    background-image: url(/img/shrines/background.gif);
    background-repeat: repeat;
    display: flex;
    justify-content: space-around;
    font-family: forum;
    color: yellow;
    max-width: 1600px;
    margin: auto;
}

.wrapper {
    width: 400px;
    background-color: #00000038;
    min-height: 100vh;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

#column1 {
    width: 300px;
}

#column2 {
    width: 700px;
}

#column3 {
    width: 300px;
}

header {
    width: 100%;
    display: flex;
    padding: 20px;
    box-sizing: border-box;
}

header img {
    margin: auto;
}

.heading {
    font-family: adorable-doll;
    margin: auto;
    font-weight: 900;
    font-size: xx-large;
    max-width: 100%;
    text-align: center;
}

.card {
    background-color: rgb(189, 189, 189);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: 10px;
    margin: 10px;
    border: 30px solid transparent;
    border-image: url('/img/shrines/border.png') 17 round;
    background-clip: padding-box;
    color: black;
}

.card h3, .card p {
    margin: 0;
    margin-bottom: 5px;
}

.spoiler {
    filter: blur(4px);
    transition: filter 0.5s;
}

.spoiler:hover {
    transition: filter 0.5s;
    filter: none;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.container {
    background-color: rgb(189, 189, 189);
    color: black;
    max-width: 400px;
}

.lacy-border {
    border: 30px solid transparent;
    border-image: url('/img/shrines/border.png') 17 round;
    background-clip: padding-box;
}