.home_section {
    position: relative;
    background-image: url('../Images/IMG_3554_szerkesztett.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
.home_section::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; 
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}
  
.home_section > div {
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: center;
    padding: 20px;
    font-size: 24px;
}

.home_button {
    padding: 10px;
    color: #00126D;
    background-color: #fff;
    font-weight: 600;
    font-size: 25px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.home_button:hover {
    background-color: #00126D;
    color: #fff;
    transform: scale(1.1);
}

.home_button:active {
  transform: scale(0.95);
  background-color: #00126D;
  color: #fff;
}

@media (max-width: 768px) {
    .home_section h1 {
        font-size: 45px;
    }
}