html {
    -webkit-touch-callout: none; /* iOS Safari */
        -webkit-user-select: none; /* Safari */
        -khtml-user-select: none; /* Konqueror HTML */
            -moz-user-select: none; /* Old versions of Firefox */
            -ms-user-select: none; /* Internet Explorer/Edge */
                user-select: none; /* Non-prefixed version, currently
                                    supported by Chrome, Edge, Opera and Firefox */
}
    
@media screen and (min-width: 1700px) {
    html {
        font-size: 100%;
    }
}

@media screen and (min-width: 1200px) and (max-width: 1699px) {
    html {
        font-size: 95%;
    }
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
    html {
        font-size: 93%;
    }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
    html {
        font-size: 90%;
    }
}

@media screen and (max-width: 767px) {
    html {
        font-size: 90%;
    }
}

body {
    margin: 0;
    font-family: "Livvic", sans-serif;
    color: #ffffff;
}

.text-color {
    color: #ffffff;
}

.container {
    height: 100vh;
    z-index: 4;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.container > div {
    flex: 1 1 100%;
}

.title {
    text-align: center;
}

.title h1 { 
    font-weight: 600;
}

.title h2 {
    font-weight: 500;
    font-size: 1.125rem;
}

.link-list {
    display: flex;
    flex-direction: column;
    max-width: 500px;
    width: 100%;
}

@media screen and (max-width: 575px) {
    .link-list {
        width: 80%;
    }
}

.background {
    transform: scale(1.0);
    -webkit-backface-visibility: hidden;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh ;
    z-index: 1;
    transition: opacity 1.3s linear;
}

.background:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.background:after {
    transform: scale(1.125);
    transition: transform 0.3s ease-in-out, filter 0.4s ease-in-out;
    background-image:		url('../images/background-desktop-d0a40c720ed536873dd2aa61a59c1144.png');
    background-position:	center;
    background-size:		cover;
    background-repeat:		no-repeat;
    z-index: 1;
}

@media screen and (max-width: 575px) {
    .background:after {
       background-image: url('../images/background-mobile-hires-c7087113fd267d5c5058cf67aafc3bb4.png');
    }
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    border-radius: 50%;
    width: 100px;
    height: 100px;
    filter: drop-shadow(2px 4px 6px rgba(0,0,0,0.4));
}

.link-container {
    height: 100%;
    z-index: 0;
    overflow: hidden;
    border: none;
    background-color: rgb(31, 35, 46);
    color: rgb(255, 255, 255);
    transition: transform 0.15s cubic-bezier(0, 0.2, 0.5, 3);
    border-radius: 32px;
    margin-bottom: 1rem;
    padding: 1.3rem 5rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
}

.link-container:hover {
    cursor: pointer;
    transform: scale(1.02);
}

.link-block {
    white-space: normal;
    background: none;
    color: inherit;
    overflow-wrap: break-word;
    word-break: break-word;
    font-weight: 500;
    flex: 1 1 100%;
    font-size: 1rem;
}

.transition-transform {
    transition-property: transform;
    transition-timing-function: cubic-bezier(.4,0,.2,1);
    transition-duration: .15s;
}

.social-icons {
    margin-top: 2rem;
}

.social-icons a {
     padding: 0.5rem;
}

.social-icons a:hover svg {
    transform: scale(1.1);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}