@import url(assets/styles/fonts.css);

* {
    font-family: 'Pacific Again', sans-serif;
}

body{
    margin: 0px;
    padding: 0px;;
}

.background-video{
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    position: relative;
}

.background-video::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.content-container{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    flex-direction: column;
}

.content-container .logo{
    width: 40%;
    height: auto;
    filter: drop-shadow(2px 3px 5px rgba(0, 0, 0, 0.5));
}

.content-container h1 {
    font-size: 60px;
    margin-top: -30px;
    text-align: center;
    text-shadow: 2px 3px 5px rgba(0, 0, 0, 0.5);
}

.socials {
    width: 200px;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

@media screen and (max-width: 576px) {
    .content-container .logo{
        width: 100%;
    }
    
    .content-container h1 {
        font-size: 50px;
    }
}