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

body, html{
    scroll-behavior: smooth;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.home{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height:100vh;
    padding: 30px;
    gap: 20px;
    background-image: url(./12.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.church-logo{
    display: flex; 
    gap: 10px;
    width: 70vw;
    height: 30vh;
    align-items: center;
    justify-content: center;
}

.home img{
    width: 100px;
    height: 100px;
    background: #fff;
}

.text{
    display: flex;
    flex-direction: column;
    width: 70vw;
    height: 30vh;
    align-items: center;
    justify-content: center;
    color: white;
    text-shadow: 2px 2px 2px black;
    background-color: gray;
    opacity: 0.9;
}
.text h1{
    font-size:45px;
}
.text h2{
    font-size: 35px;
}

.btn-cover{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70vw;
    height: 25vh;
    gap: 20px;
    /* background: blue; */
}
.btn{
    width: 300px;
    height: 65px;
    /* border: white 1px solid; */
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 25px;
    color: white;
    text-shadow: 2px 2px 2px black;
    /* background: transparent; */
    background: grey;
}
.btn:hover{
    background-color: orangered;
    box-shadow: 10px 10px 10px black;
    border:none;
}
/* &&&&&&&&&&&&&&&&&&&&&&&&&&& */
.dev{
    margin-top: 20px;
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 140px;
    height: 140px;
    color: white;
    /* background-color: orange; */
}
.dev img{
    width: 80px; 
    height: 80px; 
    border-radius:50% 
}
.icons{
    margin-top: 5px;
    display: flex;
    width: 70%;
    align-items: center;
    justify-content: space-between;
}  
.icons a{
    color: white;
}




/* MEDIA QUERY BELOW  */
@media screen and (max-width: 767px) {

    .home{
    padding: 30px 0;
    gap: 20px;
   }

    .church-logo{
    display: flex;
    gap: 10px;
    width: 100%;
    height: 20%;
    /* background-color: orchid; */
    }

    .home img{
        width: 70px;
        height: 70px;
    }


    .text{
    display: flex;
    width: 100%;
    height: 50%;
    align-items: center;
    justify-content: center;
    }
    .text h1{
    font-size:20px;
    }
    .text h2{
        font-size: 20px;
    }

    .btn-cover{
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    gap: 20px;
    /* background-color: aqua; */
    }

    .btn{
    font-size: 20px;
    }

    .dev{
    position: relative;
    right: 0;
    bottom: 0;
    left: 0;
    width:100%;
    height: auto;
    color: white;
    /* background-color: orange; */
    }
    .dev img{
        width: 50px;
        height: 50px;
    }
    .icons{
    margin-top: 5px;
    display: flex;
    width: 40%;
    align-items: center;
    justify-content: space-evenly;
}     
      
}
