* {
    padding: 0;
    margin: 0;
    font: inherit;
    outline: none;
    border: 0;
    box-sizing: border-box;
    background: transparent;
    color: inherit;
    -webkit-appearance: none;
}

html {
    width: 100%;
    height: 100%;
}

body {
    background: black url('admin-bg.svg');
    background-size: cover;
    background-position: bottom center;
    width: 100%;
    height: 100%;
    font-family: 'NUNITO', sans-serif;
    display: flex;
    color: #23423d;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0
}

h1 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-transform: uppercase;
}

p {
    margin-bottom: 10px;
    font-size: 1.2rem;
    line-height: 2;
}

p.info {
    background: #d3668d;
    color: white;
    padding: 10px 20px;
    margin: 40px auto;
    font-size: 1.4rem;
    width: fit-content;
    border-radius: 10px;
}

p.phone {
    font-size: 3rem;
    font-weight: 700;
}

a {
    text-decoration: none;
}

p.mail {
    font-size: 1.8rem;
    font-weight: 600;
}

.modal {
    text-align: center;
    width: 50vw;
    padding: 50px;
    border-radius: 20px;
}

b {
    font-weight: 600;
}

.modal img {
    max-width: 500px;
    height: auto;
    margin-bottom: 50px;
}


@media screen and (max-width: 1000px) {

    h1 {
        font-size: 1.8rem;
    }

    .modal {
        width: 100vw;
        padding: 30px;
    }

    .modal img {
        max-width: 300px;
        margin-bottom: 10px;
    }

    p.info {
        font-size: 1.2rem;
        line-height: 1.5;
        margin: 20px auto;
    }

    p.phone {
        font-size: 1.8rem;
    }

    p.mail {
        font-size: 1.2rem;
    }

    p.address {
        font-size: 1rem;
    }

}

