@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

:root {
    --font-title: 30px;

    --font-text-xxl: 24px;
    --font-text-xl: 20px;
    --font-text: 16px;
    --font-text-sm: 14px;
    --font-text-xs: 12px;
    --filter: blur(5px);
    --container: 1160px;
    --container-md: 950px;
    --container-sm: 90%;
    --box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px,
        rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px,
        rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}

* {
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
}
.hidden {
    opacity: 0;
    transition: opacity 0.7s ease-in-out;
}

.show {
    opacity: 1;
}

.page__container {
    width: 1160px;
    margin: 0 auto;
}

@media (hover: hover) {
    a:hover {
        text-decoration: none;
        color: #9e54e8 !important;
        transition: color 0.3s ease;
    }
}

@media (max-width: 1200px) {
    .page__container {
        width: 950px;
    }
}
@media (max-width: 990px) {
    .page__container {
        width: 90%;
    }
}

.upload__title {
    color: #2e2e2e;
    text-align: center;
    font-family: Roboto;
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px; /* 106.667% */
    letter-spacing: 1px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.loadBlockConfirm {
    height: 550px;
    width: 100%;
    box-shadow: var(--box-shadow);
}

.imgLoadBlock {
    background-color: #fdfdfd;
    border-radius: 25px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 40px;
}

@media (max-width: 990px) {
    .upload__title {
        font-size: 24px;
        margin: 25px;
    }
    .loadBlockConfirm {
        height: 480px;
    }

    .imgLoadBlock {
        padding: 20px;
    }
}
@media (max-width: 830px) {
    .upload__title {
        font-size: 20px;
    }
}
@media (max-width: 600px) {
    .upload__title {
        font-size: 16px;
    }
}
@media (max-width: 460px) {
    .upload__title {
        font-size: 16px;
    }
}
