body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #28420d;
    font-family:Verdana;
    color:rgb(255, 255, 255);
    min-height: 100vh;
    overflow-y: scroll;
}

.pad {
    width: 500px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    
}

#one-page{
    min-height: 100vh;
    justify-content: center;
    align-self: center;
    display: flex;
    flex-direction: column;

}

.box {
    width: 100px;
    height: 100px;
    margin: 10px 0;
    box-shadow: 0 8px 6px -6px black;
    background-color: rgb(198, 149, 26);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    color: rgba(255, 253, 252, 0.855);
    border: 4px solid;
}

.box:hover {
    cursor: pointer;
}

.box:active {
    transform: scale(0.9);
    transition: all .2s;
}

.box.active {
    transform: scale(0.9);
    transition: all .2s;
}

.snowflake {
    position: absolute;
    top: -50px;
    font-size: 24px;
    color: #FFFFFF;
    z-index: 1000;
    animation: fall 2s linear infinite;
}

@keyframes fall {
    0% {
        top: 0px;
        opacity: 1;
    }
    100% {
        top: 100%;
        opacity: 0;
    }
}

#hanging{
    position: absolute;
    top: 0;
    left: 0;
    width: 25%; 
}

#sat {
    position:absolute;
    bottom: 0;
    right:0;
    width:20%;
}

.footer {
    position: relative;
    bottom:0;
}

.horizontal-scroll-container {
    width: 50%; 
    overflow-x: auto;
    white-space: nowrap; 
    justify-content: center;
}

.thing {
    display: inline-block; 
    height: 200px;
    width: auto;
    margin: 5px;
    background-color: #f0f0f0;
    text-align: center;
    line-height: 150px;
    font-size: 20px;
    border: 1px solid #ccc;
}

#bottom {
    position: absolute;
    bottom:0;
}
