
body {
    background-color: #f8f9fa;
    font-family: 'Poppins', sans-serif;
}

.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}


.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("../images/backgroundcloud.png") no-repeat center;
    background-size: cover;
    filter: brightness(0.8);
    z-index: -1;
}

.title {
    font-size: 3rem;
    font-weight: bold;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.2);
}

.subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
}

.btn-morph {
    padding: 12px 25px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    background: #e0e0e0;
    box-shadow: 5px 5px 15px #bebebe, -5px -5px 15px #ffffff;
    color: black;
    border: none;
}

.btn-morph:hover {
    transform: translateY(-3px);
    box-shadow: 5px 5px 20px #bebebe, -5px -5px 20px #ffffff;
}

.btn-warning {
    background: #ffc107;
    color: white;
}

