body {
    width: 100%;
    height: 100vh;
    margin: 0;
    padding: 0;
}

.firstSection {
    width: 100%;
    height: 80vh;
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    position: relative; 
}

.firstSection::before {
    content: "";
    background:url(/media/images/f1_image.jpeg);
    background-size: cover;
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    opacity: 0.3; 
    border-radius: 15px;  
}

.f1_Title {
    position: relative;
    color: #000000;  
    font-size: 5rem;
    line-height: 0.9;
    text-align: center;
}

.f1_Box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;  
}

.f1_button {
    background-color: var( --color-primary);
    color: white;
    width: 240px;
    height: 60px;
    vertical-align: middle;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    box-sizing: border-box;
    padding: 20px;
    border-radius: 15px;   
}

.f1_button:hover {
    background-color: var(--color-grey);
    cursor: pointer;
    color: black;
}

@media (max-width: 500px) {
    .f1_Title {
        font-size: 3rem;
    }

    .firstSection {
        margin-top: 120px;
        border-radius: 0;
        overflow: auto;

    }

    .firstSection::before {
        border-radius: 0;
        overflow: auto;
    }
}