﻿/* Style for the home page */
.home-container {
    height: 100dvh; /* Full visible viewport height */
    background-image: url(../images/Titumir-04.jpg);
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column; /* items vertically arranged */
    justify-content: flex-end; /* push content to bottom */
    align-items: center; /* center horizontally */
    position: relative;
    color: white;
    text-align: center;
    margin: 0;
    padding: 0 0 40px 0; /* space from bottom */
}

    .home-container .btn {
        position: absolute;
        bottom: 200px;
        left: 50%;
        transform: translateX(-50%);
    }
    

h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: bold;
}

p {
    font-size: 18px;
    margin-bottom: 30px;
}

.home-container .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;
}

    .home-container .btn:hover {
        background-color: #ff784e;
    }
