body {
    font-family: 'Roboto', sans-serif;
    position: relative;
}
.downloaddiv{
    position: fixed;
    padding: 30px;
    top: 0;
    right: 0;
    color: #ffffff;
    z-index: 99999999999999999999999;
}
.downloaddiv a{
    color: #ffffff;
    text-decoration: none;
}
.downloaddiv a:hover{
    mix-blend-mode: difference;
}
.page{
    width: 100%;
    min-height: 100dvh;
    z-index: 9999999;
}
.p1{
    position: relative;
}
.p1 .bgimg{
    width: 100%;
    min-height: 100dvh; 
    filter: blur(50px);
    -webkit-filter: blur(50px);
    position: absolute;
    z-index: -1;
}
.p1 .bgimg img{
    width: 100%;
    height: 100dvh;
}
.p1 .main{
    background-image: linear-gradient(rgb(27, 27, 27), transparent 50dvh), linear-gradient(to top, rgb(27, 27, 27), transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: rgba(0, 0, 0, 0.4);
}
.p1 .main .head{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding-top: 40px;
}
.p1 .main .head .logo{
    text-align: center;
    padding: 30px;
}
.p1 .main .head .logo img{
    width: 100px;
    height: auto;
    border-radius: 50%;
}
.p1 .main .head .title{
    text-align: center;
}
.p1 .main .head .title h1{
    color: #ffffff;
    font-size: 30px;
}

.p1 .main .bio h4{
    color: #ffffff;
    padding: 30px 30px 0 30px;
}
.p1 .main .bio p{
    color: #ffffff;
    padding: 30px;
}
.p1 .main .undertitle{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
}
.p1 .main .undertitle h2, .p1 .main .undertitle h3{
    color: #ffffff;
    font-size: 20px;
    padding: 30px;
}
.p1 .main .undertitle h2 a, .p1 .main .undertitle h3 a{
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
}
.p1 .main .undertitle h2 a:hover, .p1 .main .undertitle h3 a:hover{
    mix-blend-mode: difference;
}
.p2{
    background-image: url("../img/bg.jpg");
    background-size: cover;
}
.p2 .main{
    background-image: linear-gradient(to bottom, #1B1B1B, transparent 50dvh), linear-gradient(to top, #1B1B1B, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-top: 80px;
    padding-bottom: 20px;
}


.p2 .main .events{
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
    border-radius: 20px;
    background-color: rgba(0, 0, 0, 0.2);
    margin: 10px 30px;
}

.p2 .main .events .element{
    max-width: 220px;
    padding: 10px;
 }
 .p2 .main .events .title h5{
    color: #ffffff;
    padding: 20px 0;
    text-align: center;
 }
 .p2 .main .events .element img{
    width: 100%;
    height: auto;
    border-radius: 10px;
 }
 .p2 .main .events .element a:hover{
    mix-blend-mode: difference;
 }
 .p2 .main .credits p{
    text-align: center;
    color: #ffffff;
    font-size: 14px;
 }
 .p2 .main .credits a{
    text-align: center;
    color: #ffffff;
    text-decoration: none;
 }
 .p2 .main .credits a:hover{
    mix-blend-mode: difference;
 }

 @media only screen and (max-width: 480px) {
    .p2 .main .events .title h5{
        min-width: 220px;
    }
    .downloaddiv {
        position: absolute;
        right: 10%;
    }
    .p1 .bgimg img{
        width: 100%;
        height: 200dvh;
    }
 }