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

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

header, footer {
    height: 100px;
    background-color: #CF2425;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: left;
    padding: 0 20px;
}

main {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color:rgba(255, 0, 0, 0.633);
}

.background-logo {
    position: absolute;
    width: 100%;
    max-height: 100%;
    margin: auto;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.content-text{
    position: relative;
    color: #FFFFFF;
    font-size: 2.9rem;
    width: 250px;
    transform: translateX(-100%)
    text-align: end;
}

.content-image{
    height: 85vh;
}

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

header span{
    font-size: 600;
}

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: 200px;
}

@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;
}

}

h2{
    text-shadow: 2px 2px 4px #000000; 
}

h2:hover{
  transform: scale(1.05);
  transition: all 0.3s ease;
}

img {
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.6));
}

img:hover {
  filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.6));
  transform: scale(1.05);
  transition: all 0.3s ease;
}


