@font-face {
    font-family: 'Rotondo Bold';
    src: url('fonts/rotonda_bold.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Rotondo Bold', Arial, sans-serif;
}

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

.wrapper {
    background: url('waterTechnicalWork.png') no-repeat center center;
    background-size: cover;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup {
    background: url('Popup.png') no-repeat center center;
    background-size: contain;
    width: 340px;
    height: 300px;
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 0;
}

.popup-text {
    width: 250px;
    height: 160px;
    padding: 5px 5px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    top: 57px;
}

    .popup-text h1 {
        font-size: 19px;
        color: #0095ff;
        margin-bottom: 8px;
        line-height: 1.1;
        position: relative;
        top: 11px;
    }

    .popup-text p {
        font-size: 15px;
        color: #9b3322;
        line-height: 1.3;
        position: relative;
        left: 34px;
        top: 31px;
        font-weight: 700;
    }
