*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}

body{

    background:url("images/background.jpg") center center no-repeat;
    background-size:cover;
    height:100vh;

}

.overlay{

    width:100%;
    height:100%;

    background:rgba(0,0,0,.45);

    display:flex;
    justify-content:center;
    align-items:center;

}

.container{

    width:90%;
    max-width:1000px;

    text-align:center;

    color:white;

}

h1{

    font-size:60px;
    margin-bottom:5px;

}

h2{

    font-size:30px;
    margin-bottom:25px;
    color:#eeeeee;

}

p{

    font-size:20px;
    margin-bottom:5px;

}

.cards{

    display:flex;

    justify-content:center;

    gap:40px;

    flex-wrap:wrap;

    margin-top:45px;

}

.card{

    width:320px;

    background:white;

    border-radius:20px;

    padding:35px;

    box-shadow:0 15px 35px rgba(0,0,0,.30);

}

.card:hover{

    transform:translateY(-6px);

    transition:.25s;

}

.card img{

    width:220px;

    max-width:100%;

    margin-bottom:25px;

}

.card h3{

    color:#333;

    margin-bottom:25px;

    line-height:1.4;

}

.button{

    display:block;

    background:#d62828;

    color:white;

    text-decoration:none;

    font-weight:bold;

    padding:14px;

    border-radius:30px;

    margin-bottom:18px;

    transition:.25s;

}

.button:hover{

    background:#bb1e1e;

}

.email{

    display:block;

    color:#666;

    text-decoration:none;

    font-size:15px;

}

.email:hover{

    color:#d62828;

}