* {
    color: aliceblue;
}

svg path {
    fill: aliceblue !important;
}


html, body {
    height: calc(100%);
    /* 加了height: 100%或width: 100%再加margin或者padding会溢出*/
    margin: 0!important;
    overflow: hidden;
}

.bg {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    filter: brightness(0.8);
    z-index: -999;
}

main {
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    /* 部分移动端浏览器的vh会把地址栏遮住的地方的长度也算进来，会导致元素溢出*/
    height: calc(87%);
    container-type: size;
    container-name: main;
}

main * {
    resize: both;
}

footer {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    height: calc(13%);
}

footer * {
    margin: 0 5px;
}

.bg-info {
    font-size: 0.8rem;
    position: absolute;
    top: 0;
    right: 0;
    margin: 0.6em;
    filter: opacity(0.7);
}

.link-icon {
    height: 50px;
    width: 50px;
    margin: auto 20px;
    
}

.links a {
    text-decoration: none;
}


.quote {
    text-align: center;
    margin: 2em 1.5em
}