/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body{
    background-image:url("https://i.pinimg.com/736x/c9/1b/d2/c91bd22920c9d23d29bdb3f8e16d1c0b.jpg");
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    background-attachment:fixed;
    font-family: "Curlz MT", serif;
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    background:#ffeef5;
}

#header{
    width:1200px;
    height:180px;

    margin:20px auto;

    border:2px solid pink;
}

#container{
    width:1200px;

    margin:auto;

    display:grid;

    grid-template-columns:
        220px
        1fr
        220px;

    gap:25px;
}

#left-sidebar,
#right-sidebar{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.box{
    min-height:250px;
    border:2px solid pink;
    padding:15px;
}

#content{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.welcome-box{
    display:grid;

    grid-template-columns:
        300px
        1fr;

    gap:20px;

    border:2px solid pink;
    padding:20px;
}

.character{
    min-height:350px;
    border:1px dashed pink;
}

.intro{
    min-height:350px;
    border:1px dashed pink;
}

.buttons{
    min-height:80px;
    border:2px solid pink;
}

.post{
    min-height:300px;
    border:2px solid pink;
}