* {
    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('bg.jpg');
    background-size: cover;
    background-position: top center;
    width: 100%;
    height: 100%;
    font-family: 'Poppins', sans-serif;
    display: flex;
    color: #ffffff;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0
}

h1 {
    display: inline-block;
    background: white;
    color: black;
    border-radius: 50px;
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 30px;
    padding: 10px 40px;
    text-transform: uppercase;
}

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

.info {
    color: white;
    padding: 30px;
    margin: 0 auto;
    text-align: center;
    line-height: 1.8;
    font-size: 1.2rem;
    width: fit-content;
    border-radius: 10px;

    h2 {
        font-weight: 600;
        font-size: 1.4rem;
        margin-bottom: 20px;
        text-transform: uppercase;
    }
}

p.phone {
    font-size: 1.4rem;
    margin: 0;
}

a {
    text-decoration: none;
}

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

.modal {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40vw;
    padding: 50px;
    border-radius: 20px;
}

b {
    font-weight: 600;
}

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


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

    body {
        background-image: url('bg-mobile.jpg');
        background-size: cover;
    }    

    h1 {
        display: inline-flex;
        font-size: 1rem;
        margin-bottom: 10px;
        padding: 10px 20px;
        text-align: center;
    }

    h2 {
        font-size: 1.2rem;
    }

    .modal {
        width: 100vw;
        padding: 0;
    }

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

    .info {
        margin: 20px auto;
        padding: 0 30px;
        font-size: 1.1rem;
        line-height: 1.4;
    }

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

