body{
    margin: 0;
    padding: 0;
}
.home {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.home img {
    width: 100%;
    height: 100%;
    display: block;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); 
    z-index: 1;
}

.text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    color: white;
    text-align: center;
}

.text h1 {
    font-size: 2.5em;
    margin: 0;
}

.text p {
    font-size: 1.2em;
    margin-top: 10px;
}
.logo {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 80px; 
    height: 20px;
    z-index: 2;
}