@import url('https://fonts.googleapis.com/css2?family=Asap:ital,wght@0,100..900;1,100..900&display=swap');
* {
    margin: 0px 0px;
    padding: 0px 0px;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

*::-webkit-scrollbar {
    display: none;
}

body {
    overflow: hidden;
    background-color: black;
}


#background, #blurred-background {
    width: 100%;
    height: 100vh;

    background-image: linear-gradient(rgba(0, 0, 0, 0.5),rgba(0, 0, 0, 0.5)), url('../imgs/1.jpg');
    background-position: center;
    background-size: auto 100%;
    /* background-size: contain; */
    position: absolute;
    opacity: 0;
}

@media screen and (max-width: 1200px) {
    #background, #blurred-background {
        background-size: contain;
    }
}

#blurred-background {
    filter: blur(5px);
    top: -10px;
    left: -10px;
    width: calc(100% + 20px);
    height: calc(100% + 20px);
}

#background {
    background-repeat: no-repeat;
    box-shadow: 0 0 5px 5px red;
}

.fade-in {
    -webkit-transition: 1.5s;
    -moz-transition: 1.5s;
    -o-transition: 1.5s;
    transition: 1.5s;
    opacity: 1 !important;
}
.fade-out {
    -webkit-transition: 1s;
    -moz-transition: 1s;
    -o-transition: 1s;
    transition: 1s;
    opacity: 0 !important;
}

.fa {
    aspect-ratio: 1 / 1;
    width: clamp(2.3rem, 15%, 5rem);
    font-size: clamp(0.6rem, 1.8vw, 2.5rem);

    align-content: center;
    text-decoration: none;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.644);
    
    background-color: rgb(45, 178, 255);
}

.fa:hover {
    opacity: 0.7;
}

.fa-facebook {
    background: #3B5998;
    color: white;
}

.contents {
    width: max-content;
    margin: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: auto auto;
    text-align: center;
    align-content: center;

}

#title {
    font-size: clamp(1.7rem, 5vw, 5rem);
    color: white;
    font-family: "Asap", serif;
    font-weight: normal;
}

hr {
    color: rgba(255, 255, 255, 0.425);
    margin-top: 2%;
    margin-bottom: 4%;
    vertical-align: middle;
}
#socials {
    display: inline-flex;
    display: -webkit-flex;
    flex-direction: row;
    flex-wrap: wrap;
    
    column-gap: 5%;
    row-gap: 7px;
    
    /* border: 1px solid red; */
    justify-content: center;
}