body {
    margin: 0;
    padding: 0;
}

body * {
    font-family: 'Montserrat', sans-serif;
}

.site {
    width: 100%;
    height: 100vh;
    background: no-repeat center / cover;
    display: flex;
    justify-content: center;
    align-items: center;
}

.site-inner {
    width: calc(100% - 100px);
    height: calc(100% - 100px);
    padding: 50px;
    background: rgba(0,0,0,.5);
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.site-inner-logo {
    width: 300px;
    height: 150px;
    background: no-repeat center / contain;
    display: block;
}

.site-inner-title {
    margin-top: 30px;
    font-size: 40px;
    line-height: 48px;
    color: #fff;;
    text-align: center;
}

.site-inner-list {
    margin-top: 30px;
    list-style-type: none; 
}

.site-inner-list li {
    font-size: 15px;
    line-height: 23px;
    color: #fff;;
    text-align: center;
}

.site-inner-list li:not(:last-child) {
    margin-bottom: 10px;
}


.site-inner-list li a {
    font-size: 15px;
    line-height: 23px;
    color: #fff;;
    text-align: center;
    text-decoration: none;
}

.site-inner-list li a:hover{
    text-decoration: underline;
}