body {
    margin: 0;
    padding: 0;
    height: 100vh;
    box-sizing: border-box;
    min-height: -webkit-fill-available;
    overflow: hidden;
}

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

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

.site-inner {
    width: calc(100% - 100px);
    height: calc(100% - 100px);
    min-height: -webkit-fill-available;
    padding: 50px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

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

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

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

.site-inner-list li {
    font-size: 17px;
    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;
}

.site-inner-social {
    margin-top: 20px;
    padding: 0;
    list-style-type: none; 
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.site-inner-social li a {
    width: 25px;
    height: 25px;
    display: block;
}

.site-inner-social li a:hover svg * {
    fill: #c20f5e;
}

.site-inner-social li a svg {
    width: 100%;
    height: 100%;
}

.site-inner-social li a svg * {
    fill: #fff;
    transition: .4s;
}

@media screen and (min-width: 320px) and (max-width: 1279px) {
    .site-inner {
        width: 100%;
        height: 100%;
        padding: 80px 30px 30px 30px;
        justify-content: flex-start;
    }
    
    .site-inner-logo {
        width: 300px;
        height: 200px;
    }
    
    .site-inner-title {
        font-size: 25px;
        line-height: 38px;
    }
}