*{
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body{
    height: 100dvh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background-color: #f7f5e8;
}

.header{
    width: 100%;
    background-color: #f7f5e8;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.header .cubes{
    width: 100%;
    position: absolute;
    top: 0;
    left:0;

}

.header .brand{
    width: 50%;
    aspect-ratio: 16/2;
    object-fit: contain;
    margin-top: 5%;
    margin-bottom: 3%;
    min-width: 500px
}

.main{
    width: 100%;
    height: 100%;
    position: relative;
}

.main img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main .mainArea{
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgba(20, 59, 100, .5);
    backdrop-filter: blur(5px);
    color: white;
}

.main .mainArea h1{
    font-size: 40px;
    font-weight: 900;
}

.main .mainArea p{
    opacity: .8;
}