@import url('https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,100..900&display=swap');

/*
    font-family: 'Inter', sans-serif;
*/

html {
    min-height: 100%;
}

body {
    background-color: #090920;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    min-height: 100%;
}

strong {
    font-weight: 700;
}

.layout {
    background: url(../images/bg.jpg) no-repeat center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    position: relative;
    z-index: 0;
}

.layout::after {
    background: linear-gradient(180deg, rgba(20, 2, 32, 0.58), rgba(20, 2, 32, 0) 20%, rgba(20, 2, 32, 0) 75%, rgba(20, 2, 32, 0.89));
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.header {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px 30px 20px;
    position: relative;
    z-index: 1;
}

.header .logo {
    -webkit-animation: fade-in 0.75s ease-in-out 0.75s both;
    animation: fade-in 0.75s ease-in-out 0.75s both;
    display: block;
}

.main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1 0 auto;
    padding: 0 10px;
}

.content {
    -webkit-animation: slide-in-bottom 0.75s ease-in-out 0.25s both;
    animation: slide-in-bottom 0.75s ease-in-out 0.25s both;
    background-color: rgba(62, 82, 143, 0.64);
    -webkit-backdrop-filter: blur(30px);
    backdrop-filter: blur(30px);
    border-radius: 40px;
    max-width: 578px;
    width: 100%;
    margin: 0 auto;
    padding: 42px 45px 65px;
    text-align: center;
}

.dice {
    font-size: 32px;
    margin: 0 auto 8px;
}

.title {
    font-size: 45px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 22px;
}

.p {
    letter-spacing: -0.015em;
}

.footer {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin: 20px auto 25px;
    max-width: 544px;
    width: 100%;
}

.security {
    -webkit-animation: slide-in-bottom 0.5s ease-in-out 0.75s both;
    animation: slide-in-bottom 0.5s ease-in-out 0.75s both;
    font-size: 13px;
    line-height: 1.25;
    text-align: center;
    padding: 10px;
    max-width: 160px;
    width: 100%;
}

.security:nth-child(2) {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}

.security:nth-child(3) {
    -webkit-animation-delay: 1.25s;
    animation-delay: 1.25s;
}

.security:nth-child(2) .security-icon,
.security:nth-child(3) .security-icon {
    padding: 10px 0 3px;
}

.security-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 3px;
}

@media (max-width: 1599px) {
    body {
        font-size: 15px;
    }

    .header {
        padding: 12px 20px 10px;
    }

    .header .logo {
        width: 490px;
    }

    .content {
        padding: 38px 30px;
        max-width: 530px;
    }

    .dice {
        margin-bottom: 5px;
        width: 174px;
    }

    .title {
        font-size: 41px;
        margin-bottom: 20px;
    }

    .footer {
        margin: 15px auto 20px;
        max-width: 520px;
    }

    .security {
        font-size: 12px;
    }

    .security-title {
        font-size: 19px;
    }
}

@media (max-width: 767px) {
    body {
        font-size: 15px;
    }

    .header {
        padding: 8px 28px 10px;
    }

    .header .logo {
        width: 330px;
    }

    .content {
        border-radius: 30px;
        max-width: 420px;
        padding: 22px 30px 35px;
    }

    .dice {
        margin-bottom: 10px;
        width: 148px;
    }

    .title {
        font-size: 22px;
        margin-bottom: 17px;
    }

    .security {
        font-size: 11px;
    }

    .security:first-child .security-icon {
        width: 33px;
    }

    .security:nth-child(2) .security-icon,
    .security:nth-child(3) .security-icon {
        padding: 5px 0 4px;
        width: 39px;
    }

    .security-title {
        font-size: 17px;
        margin-bottom: 2px;
    }
}

@media (max-width: 540px) {
    .layout {
        background-image: url(../images/bg-mob.jpg);
    }
}

@-webkit-keyframes fade-in {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fade-in {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-webkit-keyframes slide-in-top {
    0% {
        transform: translateY(-20px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slide-in-top {
    0% {
        transform: translateY(-20px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@-webkit-keyframes slide-in-bottom {
    0% {
        transform: translateY(15px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slide-in-bottom {
    0% {
        transform: translateY(15px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}