.main {
    margin: 0 auto;
}

.top {
    width: 10px;
    height: 200px;
}

.container {
    width: 80%;
    height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* background-color: pink; */
}

.container h1 {
    margin-bottom: 20px;
    font-weight: 900;
}

.container p {
    color: #888;
}

.footer {
    position: fixed;
    bottom: 10px;
    left: 0;
    right: 0;
    /* background-color: skyblue; */
}



.footer ul {
    display: flex;
    list-style: none;
    margin-bottom: 10px;
    text-align: center;
    justify-content: center;
    align-items: center;

}

.footer ul li::after {
    content: '|';
    margin: 0 30px;
}

.footer ul li:last-child::after {
    content: '';
}

.footer p {
    text-align: center;
}