* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body{
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

header, footer {
    width: 100%;
    height: 100px;
    background-color: rgb(22, 22, 89);
    color: rgb(255, 255, 255);
    display: flex;
    align-items: center;
    justify-content: space-between;

}

main {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    
}
header {
    height: 100px;
    display: flex;
    align-items: center;
    gap: 24px;
    color: #FFFFFF;
    padding-left: 75px;
}

header span {
    font-weight: 600;
}
main {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}


.background-logo {
    position: absolute;
    width: 700px;
    height: 700px;
    margin: auto;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -2;
    filter: drop-shadow(10px 20px 10px black);
}

.content-text {
    position: absolute;
    color: #f4f4f6;
    font-size: 2.5rem;
    width: 240px;
    font-size: 350PX;
    transform: translateX(-160%);
    text-align: end;
    z-index: -1;
    filter: drop-shadow(10px 20px 10px black);
    
}

.content-image {
    height: 55vh;
    filter: drop-shadow(10px 20px 10px black);
}
footer {
    height: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-right: 75px;
    padding-left: 75px;
    color: #FFFFFF;
    font-weight: 100;
}

footer div {
    width: 64px;
}

iframe{
    height: 100%;
    width: 100%;
}

@media (max-width: 768px) {
    header {
        padding-left: 25px;
    }

    .content-text {
        transform: translateX(0%);
        top: 80px;
        font-size: 1rem;
        width: 100px;
        text-align: center;
    }

    .content-image {
        height: 70vh;
    }

    footer {
        padding: 0px 25px;
    }
}
