body{
    background:
    url("glitter.png"),
    url("leopard.png"),
    #000;
}

header{
    text-align:center;
    padding:40px;
}

h1{
    color:#ff4fb5;
    font-size:60px;
}

nav{
    display:flex;
    justify-content:center;
    gap:20px;
    padding:20px;
}

nav a{
    color:white;
    text-decoration:none;
}

section{
    width:80%;
    margin:auto;
    background:#111;
    padding:30px;
    border:2px solid hotpink;
}

.lace-top{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    pointer-events: none;
    z-index: 1000;
}

.lace-bottom{
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    pointer-events: none;
    z-index: 1000;
}

.lace-left{
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    pointer-events: none;
    z-index: 1000;
}

.lace-right{
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    pointer-events: none;
    z-index: 1000;
}