* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.header {
    width: 100%;
    height: 100vh;
    position: relative;
}

.main-header {
    height: 90vh;
    background-image: url('../img/underconstruction.jpeg');
    background-size: cover;
    background-position: center;
    position: relative;
}

.title {
    width: 35%;
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);

}

.title h1 {
    padding: 20px 0;
    font-size: 56px;
    font-weight: 500;
    color: #4579a8;
    text-transform: uppercase;
}

.banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 10vh;
    background-color: #1176ae;
}

.banner p {
    padding: 0.5% 2%;
    font-size: 2.6em;
    color: #fff;
}