@import url('https://fonts.googleapis.com/css2?family=Overpass:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
    font-family: poppins;
}


body{
    width: 100%;
    height: 100vh;
}





.slideshow-container {
    position: relative;
    width: 100%;
    height: 100vh;
}

.mySlides {
    overflow: hidden;
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}


.mySlides img{
    width: 100%;
    height: 100%;
}

.mySlides.active {
    opacity: 1;
}

#soon-container{
    position: fixed;
    width: 40%;
    height: 500px;
    background-color: rgba(255, 255, 255, 0.7);
    z-index: 999;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-radius: 15px;
}

#soon{
    width: 100%;
    height: 100%;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
}

#soon-content{
    position: absolute;
    top: 20%;
}
#soon-content h1{
    font-size: 100px;
    color: black;
    text-shadow: 0 0 5px gray;
    line-height: 0.7;
}
#soon-content h2{
    font-size: 50px;
    color: black;
    width: 100%;
    display: flex;
    margin-left: 100px;
    justify-content: end;
    text-shadow: 0 0 5px gray;
}
#social{
    margin-top: 20px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
#social a{
    color: black;
    font-size: 50px;
    border-radius: 50%;
    border: 1px solid black;
    transition: all .3s ease;
}
#social a:hover{
    scale: 1.1;
    background-color: black;
    color: white;
}
#social a:first-child{
    padding: 10px 26px;
}
#social a:last-child{
    padding: 10px 32px;
}
#efe-copy{
    position: absolute;
    bottom: 10px;
}

#efe-copy h5{
    font-weight: 400;
    color: black;
    font-size: 20px;
}


@media (max-width : 430px){
    .mySlides{
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .mySlides img{
        width: auto;
        height: auto;
    }
    #soon-container{
        width: 90%;
        height: 300px;
    }
    #soon-content h1{
        text-align: center;
        font-size: 50px;
    }
    #soon-content h2{
        font-size: 25px;
        margin-left: 20px;
    }
    #social a{
        font-size: 25px;
    }
    #social a:first-child{
        padding: 5px 13px;
    }
    #social a:last-child{
        padding: 5px 17px;
    }

    #efe-copy h5{
        font-size: 12px;
    }
}

@media (max-width : 1025px){
    #soon-container{
        width: 90%; 
    }
}

@media (min-width : 1440px){
    #soon-container{
        width: 50%;
    }
}