@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;700;900&display=swap');


*{
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.main{
    width: 100%;
    height: 100vh;
    background-color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.background-video{
    position: absolute;
    display: flex;
    right: 0;
    bottom: 0;
    z-index: 0;
    min-width: 100%;
    height: auto;
    min-height: 100%;
}

@keyframes dim-on-load{
    0% {
        background-color: rgba(0,0,0,1);
    }
    100% {
        background-color: rgba(0,0,0,0.4);
    }
}

.video-dimmer{
    animation: 3s ease-out 0s 1 dim-on-load;
    background-color: rgba(0,0,0,0.4);
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 1;
    min-width: 100%;
    height: auto;
    min-height: 100%;
}

@keyframes fade-in{
    0% {
        opacity: 0%;
    }
    100% {
        opacity: 100%;
    }
}
.content{
    width: 100%;
    height: 100vh;
    z-index: 2;
    display: grid;
    place-items: center;
    animation: 1s ease-out 0s 1 fade-in;
}

@keyframes glow-in{
    0% {
        box-shadow: 0px 0px 0px white;
    }
    100% {
        box-shadow: 0px 0px 24px white;
    }
}

.centre-box{
    width: 900px;
    height: 700px;
    background-color: rgba(0,0,0,0.8);
    border-style: solid;
    border-width: 4px;
    border-color: white;
    border-radius: 8px;
    display: grid;
    place-items: center;
    animation: 2s ease-out 0s 1 glow-in forwards;
}

.inside-box{
    width: 850px;
    height: 700px;
}

.title{
    margin-top: 10px;
    color:white;
    font-family: 'Montserrat', sans-serif;
    font-size: 64px;
    font-weight: 800;
}

.description{
    color: rgb(200,200,200);
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 200; 
    font-style: italic;
    padding-bottom: 10px;
}

.pages{
    width: 49%;
    height: 78%;
    float: left;
    background-color: rgba(10,10,10,0.5);
    border-radius: 16px;
}

.socials{
    width: 49%;
    height: 78%;
    float: right;
    background-color: rgba(10,10,10,0.5);
    border-radius: 16px;
}

.subtitle{
    color:white;
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    font-weight: 600;
    padding-left: 10px;
    padding-bottom: 10px;
}

.list-link{
    padding-left: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 800;
    text-decoration: none;
    color: red;
}

.list-link:hover{
    text-decoration: underline;
}

.list-description{
    padding-left: 10px;
    padding-bottom: 20px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    color: white;
    
}