body {
    width: 100vw;
    height: 100vh;
    color: #444;
    background: url('../images/center/bg.jpg') no-repeat center center;
    background-size: cover;
    color: #fff;
    text-shadow: 0 .25rem 1rem rgba(0,0,0,.45);
}
.background-wrapper {
    width: 100%;
    height: 100%;
    background: #000000;
    background: radial-gradient(circle,rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.6) 100%);
    backdrop-filter: blur(5px);
}
.container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.content .welcome {
    text-align: center;
    font-size: 45px;
}
.content .coming-soon {
    font-size: 55px;
    text-align: center;
    margin-bottom: 0.75rem;
}
.content .list {
    padding-left: 20px;
}
.content .list li {
    font-size: 22px;
    display: flex;
    gap: 8px;
}
.content .contact-us {
    text-align: center;
}
.content .contact-list {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.content .contact-list .contact-list-item a {
    color: #fff;
    font-size: 18px;
    transition: 0.2s ease-in-out;
    text-decoration: none;
}
.content .contact-list .contact-list-item a:hover {
    color: #4e8afa;
    /* text-shadow: 0 .125rem .25rem rgba(55, 55, 55,.2); */
}
.content .follow-us {
    text-align: center;
}
.content .social-list {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
}
.content .social-list .social-list-item a {
    color: #fff;
    font-size: 28px;
    transition: 0.2s ease-in-out;
}
.content .social-list .social-list-item a:hover {
    color: #4e8afa;
}
.content .welcome-text {
    margin-bottom: 0.5rem;
    max-width: 600px;
    text-align: center;
    text-shadow: 0 .25rem 1rem rgba(0,0,0,.45);
    font-size: 18px;
}
