.box {
     max: width 2000px;
     margin: 150px 200px;
     display: grid;
     grid-gap: 15px;
     grid-template-columns: 250px minmax(0, 1fr);
}

header, nav, main, footer {
    border: #ffb79d 7px solid;

}

header {
    background-color: rgb(255, 238, 229);
    grid-row: 1 / 2;
    grid-column: 1 / 3;
    border-radius: 10px;
    height: max-content;
    color: rgb(207, 72, 35);
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    text-align: center;
    font-size: 1.5cm
    }



nav {
    background-color: rgb(255, 238, 229);
    grid-row: 2 / 3;
    grid-column: 1 / 2;
    border-radius: 10px;
    height: max-content;
    color: rgb(207, 72, 35);
    font-family: sans-serif;
    text-align: left;
    text-align: center;
    font-size: larger;
}



ul {
    padding: 0;

    }

ul li::marker {
    content: none;
}
      


main {
    background-color: rgb(255, 238, 229);
    grid-row: 2 / 3;
    grid-column: 2 / 3;
    border-radius: 10px;
    height: max-content;
    color: rgb(207, 72, 35);
    font-family: sans-serif;
    text-align: center;
    font-size: x-large;
}



footer {
    background-color: rgb(255, 238, 229);
    grid-row: 3 / 4;
    grid-column: 1 / 3;
    border-radius: 10px;
    color: rgb(207, 72, 35);
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    text-align: left;
    font-size:large;
}



h2 {
    color: rgb(207, 72, 35);
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    text-align: center;
    font-size:larger;
    
}


img {
    max: width 100%;
}


html {
overflow: scroll;
overflow-x: hidden;
}
::-webkit-scrollbar {
width: 0; /* remove scrollbar space */
background: transparent; /* to make scrollbar invisible */
}
::-webkit-scrollbar-thumb {
background: transparent;
}

body {
background-image: url('https://files.catbox.moe/qh7co4.png');
background-attachment: fixed;
background-repeat: repeat;
overflow: hidden;
} 