root{
    --text-color: white;
    --bg-color: black;
}
body{
    font-family: Arial;
    color: white;
    background-color: black;
}
h1 {
    text-align: center;
}
.container{
    grid-template-columns: 1fr 3fr ;
    display: grid;
    gap: 15px;
}
header,
footer {
    border-radius: 5px;
    padding: 10px;
    background-color: sandybrown;
    color: whitesmoke;
    text-align: center;
    padding-top: 20px;
}
sideheader{
    margin-top: 10px;
    border-radius: 5px;
    background-color: sandybrown;
    text-align: center;
    padding-top: 30px;
}
aside{
    margin-right: 50px;
}
article{
    padding: 10px;
    margin: 10px;
    border-radius: 10px;
    background: orange;
}
.page_center{
    text-align: center;
}
.box{
    background: burlywood;
    padding: 20px;
    width: 512px;
    margin-left: 50%;
    transform: translate(-50%, -0);
    margin-bottom: 50%;
    border-radius: 10px;
}
.scroll-box {
    width: 300px;         /* Set the width of the scroll box */
    height: 200px;        /* Set the height of the scroll box */
    border: 1px solid #ccc; /* Add a border for visibility */
    padding: 10px;        /* Add some padding */
    overflow: auto;       /* This is the key property for scrolling */
}

.road-rage-regular {
    font-family: "Road Rage", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: x-large;
}
.special-elite-regular {
    font-family: "Special Elite", system-ui;
    font-weight: 400;
    font-style: normal;
}
.finger-paint-regular {
  font-family: "Finger Paint", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.buttonscreen{
    box-sizing: border-box;
    border: none;
    border-radius: 5px;
    padding: 1em 2em;

}