*{
    margin: 0;
    padding: 0;
}

header{
    background-image:linear-gradient(rgba(0,0,0,0.8),rgba(0,0,0,0.8)), url(../Arcane/Images/thefoollabel.png);
    height: 100vh;
    background-size: cover;
    background-position: center;
}

ul{
    float: right;
    list-style-type: none;
    margin-top: 25px;
}

ul li{
    display: inline-block;
}

ul li a{
    text-decoration: none;
    color: #fff;
    padding: 5px 20px;
    border: 1px solid transparent;
    transition: 0.4s ease;
}

ul li a:hover{
    background-color: #fff;
    color: black;
}

ul li.active a{
    background-color: #fff;
    color: black;
}
.logo img{
    float: left;
    width: 150px;
    height: auto;
    margin-top: 20px;
}

.main{
    max-width: 1200px;
    margin: auto;
}

.title{
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.title h1{
    font-size: 70px;
    color: #fff;
}

.subtitle{
    position: absolute;
    text-align: center;
    top: 74%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.subtitle h1{
    font-family: Helvetica;
    font-weight: 500;
    font-size: 20px;
    color: #bebc53;
}

.subsubtitle{
    position: absolute;
    text-align: center;
    top: 80%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.subsubtitle h1{
    font-family: Helvetica;
    font-style: italic;
    font-weight: 500;
    font-size: 20px;
    color: #bebc53;
}

.button{
    position: absolute;
    top: 85%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.btn{
    border: 1px solid #fff;
    padding: 10px 30px;
    color: #fff;
    font-size: 20px;
    text-decoration: none;
    transition: 0.4s ease;
}

.btn:hover{
    background-color: #fff;
    color: black;
}