body, html {
    height: 100%;
    margin: 0;
    font-family: 'Inter', sans-serif;
}

.bg-image {
    background-image: url('../img/ntt-datacenter.webp');
    background-size: cover;
    background-position: center;
    position: fixed !important;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
}

.main-block {
    width: 768px;
    max-width: 90vw;
    margin-top: 100px;
    margin-bottom: 50px;
}

.custom_modal {
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.custom_modal.animate {
    animation-name: animate_modal_background;
    animation-duration: .3s;
    animation-fill-mode: forwards;
}

.custom_modal.animate > div {
    animation-name: animate_modal;
    animation-duration: .3s;
    animation-fill-mode: forwards;
}

@keyframes animate_modal_background {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes animate_modal {
    from {
        top: -40px;
    }
    to {
        top: 0;
    }
}