/*General Styles*/
body{
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: black;
    background-image: url('background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/*Dark Overlay to make text readable*/
body::before {
    content: "";
    position: fixed;
    top: 0; left: 0; width:100%; height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: -1;
}

/*Welcome Text*/
h2 {
    margin: 10px 0;
    font-weight: bold;
    font-size: 50px;
    margin-top: 400px;
    font-family: "Sofia" , sans-serif;
}

h3 {
    margin: 10px 0;
    font-weight: bold;
    font-size: 30px;
}

/*Paragraph Style*/
p{
    font-size: 20px;
    margin-bottom: 20px;
    color:aliceblue
}

/*Styled Button*/
.button-link {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    margin: 20px 0;
}

.button-link:hover {
    background-color: #0056b3;
}

/*Responsive Design*/
@media (max-width:768px) {
    body {
        padding: 20px;
        text-align:center;
    }

    button {
        width: 80%;
        font-size: 20px;
    }
}