* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

* {
max-width: 1080px;
}

body {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    border-radius: 10px;
    font-size: 1.2em;
    }

h2 {
    margin-bottom: 1rem;
}

.sticky-header {
    position: sticky;
    /* width: 100%; */
    top: 0px;
    background-color: whitesmoke;
    /* color: dodgerblue; */
    /* margin: 20px; */
    padding: 20px
    /* padding-left: 10%; */
    /* border: 20px; */
    /* z-index: 1000; */
    }

input {
    /* background-color:coral; */
    width: 100%;
    height: 100%;
    font-size: 1.2rem;
}

.show-list {
    height: 100%;
    color:black;
    background-color:chartreuse;
    border: 0;
        border-radius: 999px;
}    

.show-list:hover {
    background-color: yellow;

}

.result {
    display:grid;
    grid-template-columns: 2;
    padding-left: 10px;
    font-weight: bold;
    /* color: red; */
}

.attic-page-container {
    display:grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;  
    padding: 20px;
    gap: 10px;
} 

.attic-container {
    display:grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 10px;
    }
 
.attic-row-1 {
    grid-column: span 1;
    background-color: aqua;
    padding: 10px;
}    

.attic-row-2 {
    grid-column: span 2;
    background-color:transparent;
    border-radius: 999px;
}
