@import url('https://fonts.googleapis.com/css2?family=Barlow&family=Tajawal:wght@200;400;700;900&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body{
    font-family: 'Barlow', sans-serif;
    text-align: center;
}

.container {
    width: 100vw;
    height: 100vh;
    background-image: url(bg.jpg);
    background-size: cover;
    background-position: right;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.layer{
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: #00000094;
    top: 0;
    right: 0;
    z-index: 0;
}

.text {
    font-size: 4.5rem;
    color: #fff;
    position: relative;
    padding: 1rem;
}