/* ================= RESET ================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    background:#111;
    color:white;
    animation: morphIn 0.8s ease;

}

/* Homepage Button */
.landing-page-btn{
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;

    background: #ff3131;
    border: none;
    padding: 16px 40px;
    border-radius: 50px;
    cursor: pointer;
    transition: 0.3s;
}

.landing-page-btn:hover{
    background: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 49, 49, .45);
}

.landing-page-btn a{
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
}

.landing-page-btn:hover a{
    color: #ba0000;
}

/* ================= HOME ================= */

#home{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;

    text-align:center;

    background:linear-gradient(135deg,#9d0000,#111);

    padding-bottom:60px;
}

/* ================= IMAGE ================= */

.image-container{
    width:100%;
    height:500px;    /* Adjust this value as needed */
    overflow:hidden;
}

.image-container img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:0.4s ease;
}

.image-container img:hover{
    transform:scale(1.02);
}

/* ================= TITLE ================= */

#home h1{
    margin-top:50px;

    font-size:60px;

    color:white;

    letter-spacing:3px;

    text-align:center;
}

/* ================= PARAGRAPH ================= */

#home p{

    width:70%;
    max-width:900px;

    margin-top:25px;

    font-size:20px;

    line-height:1.8;

    text-align:center;

    color:#e5e5e5;

}

/* ================= BUTTON ================= */

button{
    margin-top:35px;
    background:#ff3131;
    border:none;
    padding:16px 40px;
    border-radius:50px;
    cursor:pointer;
    transition:0.3s;
}

button:hover{

    background:white;

    transform:translateY(-5px);

    box-shadow:0 10px 20px rgba(255,49,49,.45);

}

button a{
    color:white;
    text-decoration:none;
    font-size:18px;
    font-weight:bold;
    
}

button:hover a{

    color:#ba0000;

}

/* ================= FOOTER ================= */

footer{

    background:#c40000;

    text-align:center;

    padding:20px;

    font-size:18px;

    font-weight:bold;

}

@keyframes morphIn{
    from{
        opacity: 0;
        transform: scale(0.95);
        filter: blur(10px);
    }

    to{
        opacity: 1;
        transform: scale(1);
        filter: blur(0);
    }
}