body { 
    font-family: "Roboto"; 
    margin: 0; 
    padding: 0;  
}

.container {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('Images/BG-ConstructionPage1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    color: white;
    text-align: center;
}

h1 {
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-size: 70px;
    color: #f2b032;
    margin-top: 110px;
    margin-bottom: 20px;
    line-height: 1.1;
}

p {
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    font-size: 40px;
    color: #ffffff;
    margin: 20px 0;
    line-height: 1.3;
}

.social {
    display: flex;
    gap: 20px;
    margin-top: 70px;
}

.social img {
    width: 60px;
    height: auto;
    transition: transform 0.3s;
}

.social a:hover img {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    h1 {
        font-size: 40px;
        margin-top: 40px;
        padding: 0 15px;
    }

    p {
        font-size: 24px;
        padding: 0 10px;
        line-height: 1.3;

        max-width: 250px;
        margin-left: auto;
        margin-right: auto;
    }

    .social {
        margin-top: 40px;
    }

    .social img {
        width: 50px;
    }

    .logo {
        width: 300px;
    }
}