﻿/* Style for the home page */
.home-container {
    height: 100vh; /* Full height of the viewport */
    background-image: url(../images/Titumir-04.jpg);
    background-size: cover;
    background-position: center;
    /*background-attachment: fixed;*/
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    color: white;
    text-align: center;
}

    .home-container .overlay {
        background-color: rgba(0, 0, 0, 0.6); /* Semi-transparent overlay */
        padding: 50px;
        border-radius: 10px;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
    }

h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: bold;
}

p {
    font-size: 18px;
    margin-bottom: 30px;
}

.btn {
    padding: 15px 30px;
    background-color: #ff5722;
    color: white;
    text-transform: uppercase;
    font-size: 16px;
    border-radius: 50px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

    .btn:hover {
        background-color: #ff784e;
    }
