*{
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.main{
    width: 100%;
    height: 100vh;
    background-color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.background-video{
    display: none;
}

@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;
}

.centre-box{
    width: 98%;
    height: 98vh;
    background-color: black;
    border-style: solid;
    border-width: 4px;
    border-color: white;
    border-radius: 8px;
    display: grid;
    place-items: center;
    overflow: hidden;
}

.inside-box{
    width: 95%;
    height: 100vh;
}

.title{
    color:white;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 64px;
    font-weight: 800;
}

.description{
    color: rgb(200,200,200);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 24px;
    font-weight: 200; 
    font-style: italic;
    padding-bottom: 10px;
}

.pages{
    width: 100%;
    height: auto;
    background-color: rgba(10,10,10,1);
    border-radius: 16px;
    margin-bottom: 20px;
}

.socials{
    width: 100%;
    height: auto;
    background-color: rgba(10,10,10,1);
    border-radius: 16px;
    margin-bottom: 64px;
}

.subtitle{
    color:white;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 48px;
    font-weight: 600;
    padding-left: 10px;
    padding-bottom: 10px;
}

.list-link{
    padding-left: 10px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', 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;
    text-wrap: wrap;
}