* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Inter, sans-serif;
}

.wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 100vh;
    background: #EDF5FC url("images/bg.svg") no-repeat right bottom;
    background-size: auto 100%;
    padding: 30px;
}

.alert {
    max-width: 580px;
    margin: auto;
    padding: 20px 30px 30px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.70);
    text-align: center;
}
.alert h1{
    font-size: 40px;
    line-height: 50px;
    color: #2C2D2E;
}
.alert h1 span{
    color: #2979FF;
}
.alert p{
    font-size: 19px;
    line-height: 24px;
}
.alert a{
    display: inline-block;
    margin: 0 auto;
    padding: 10px 16px 10px 16px;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    line-height: 18px;
    text-align: left;
    border-radius: 4px;
    background: #2979FF;
    text-decoration: none;
    transition: all 0.3s;
}
.alert a:hover{
    opacity: 0.8;
}

.lang {
    padding: 30px 0 0;
}
.lang__btn {
    display: inline-block;
    width: 24px;
    height: 24px;
    margin: 0 4px;
    cursor: pointer;
    transition: all 0.3s;
}
.lang__btn:hover {
    opacity: 0.8;
}

@media screen and (max-width: 900px) {
    .alert {
        background: rgba(255, 255, 255, 0.80);
    }
    .alert h1{
        font-size: 24px;
        line-height: 28px;
    }
    .alert p{
        font-size: 16px;
        line-height: 20px;
    }
}
