*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body{
    font-family: 'Segoe UI', sans-serif;
    height: 100vh;
    background: url(landing\ page.jpg) no-repeat center center/cover;
    position: relative;
    overflow: hidden;
}

.overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.content{
    position: relative;
    z-index: 2;
    color: white;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    /* top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
     */
}

h1{
    font-size: clamp(1.5rem, 5vw , 4rem);
    margin-bottom: 2em;
}

p{
    font-size: 1.2em;
    margin-bottom: 2em;
}

a.button{
    display: inline-block;
    padding: 12px 24px;
    background-color: #007BFF;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 20px;
    transition: background-color 0.3s ease;
}

a.button:hover{
    background-color: #004080;
}
a.button:active{
    background-color: #004080;
}