* {
    box-sizing: border-box;
}
body {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
}
.banner {
    position: relative;
    height: 100vh;
    overflow: hidden;
}
.banner::before {
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(30, 26, 106, 0.5);
    position: absolute;
    top: 0;
    left: 0;
}
.banner-image {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}
.banner-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.banner-text h1 {
    font-size: 5rem;
    line-height: 1.2;
    color: #fff;
    margin: 0px;
    text-align: center;
}