@import url(https://fonts.googleapis.com/css?family=Inter:100,200,300,regular,500,600,700,800,900,100italic,200italic,300italic,italic,500italic,600italic,700italic,800italic,900italic);
@font-face {
    font-family: "Joker";
    src: url("../font/GothicJoker.ttf");
}
* {
	box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.wrapper {
    position: relative;
	width: 100%;
    min-width: 600px;
	min-height: 100vh;
	background-color: black;
	padding: 0 100px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.container{
    position: relative;
    z-index: 3;
    color: white;
}

.background{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    line-height: 0;
}
.background img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.background.animate{
    animation: background 1s linear 0.1s forwards;
}

.projector-wrapper{
    position: absolute;
    z-index: 4; /* 2||4||7 */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.8);
    display: none;
    pointer-events: none;
}
.projector{
    position: absolute;
    top: 50%;
    left: 50%;
    width: max(250px, 30vw);
    height: max(250px, 30vw);
    max-width: 450px;
    max-height: 450px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    backdrop-filter: brightness(5);
    box-shadow: inset 0 0 40px 0 white, 0 0 40px 0 white;
    pointer-events: auto;
    cursor: crosshair;
}
.projector.animate{
    animation: projector 1s linear forwards;
}

.blood{
    position: absolute;
    top: 0;
    left: 50%;
    width: clamp(250px, 35%, 340px);
    z-index: 5;
    transform: translateX(-50%);
    line-height: 0;
}
.blood img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo{
    position: absolute;
    z-index: 6;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: clamp(4rem, 10vw, 7rem);
    font-family: "Joker";
    line-height: 1;
}
.logo.animate{
    animation: logo 1s linear 1s forwards;
}

.menu{
    margin: 95px auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.menu ul{
    list-style: none;
    display: flex;
    align-items: center;
    gap: 50px;
}
.menu a{
    color: white;
    text-decoration: none;
    font-family: "Inter";
    font-size: 14px;
    transition: all 0.2s;
}
.menu a:hover{
    color: #A00706;
}

main{
    flex-grow: 1;
    display: flex;
    margin-bottom: 50px;
}
main .container{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
}

.names{
    font-family: "Joker";
    font-size: 2rem;
    line-height: 1.5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15vh;
}

.descriptions{
    font-family: "Inter";
    font-size: .875rem;
    line-height: 1.5;
    display: flex;
    justify-content: space-between;
    margin-bottom: auto;
    gap: 20px;
}
.descriptions > div{
    max-width: 300px;
    min-width: 200px;
    flex: 1 1 50%;
}
.joker-desc{
    text-align: left;
}
.gaga-desc{
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.bottom-info{
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: "Inter";
    font-size: .875rem;
    line-height: 1.5;
}
.bottom-info > div{
    display: flex;
    flex-direction: column;
}
.writer{
    text-align: right;
}

button{
    font-family: "Inter";
    font-size: 16px;
    font-weight: 700;
    background-color: #A00706;
    color: white;
    border: none;
    border-radius: 10px;
    padding: 10px 100px;
    cursor: pointer;
    box-shadow: inset 1px 1px 2px 0 #fff;
}
button:active{
    box-shadow: inset 0 0 5px 2px #000;
}
button.animate{
    animation: button 1s ease-in 1.8s forwards;
}

.copyright{
    width: fit-content;
    margin: 0 auto;
    padding: 15px;
}
.copyright a{
    font-family: "Joker";
    font-size: 16px;
    color: white;
    letter-spacing: 2px;
    margin-left: 10px;
    transition: all 0.2s;
}
.copyright a:hover{
    color: #A00706;
}

@keyframes background {
    0%{
        transform: scale(1);
    }
    100%{
        transform: scale(1.2);
    }
}

@keyframes logo {
    0%{
        top: 50px;
        transform: translateX(-50%) scale(1);
    }
    100%{
        top: calc(100% - 280px);
        transform: translateX(-50%) scale(1.8);
    }
}

@keyframes button {
    0%{
        width: 40%;
    }
    80%{
        width: 70%;
    }
    100%{
        width: 50%;
    }
}

@keyframes projector {
    0%{
        width: max(250px, 30vw);
        height: max(250px, 30vw);
        max-width: 450px;
        max-height: 450px;
    }
    100%{
        width: 110vw;
        height: 110vw;
        max-width: 110vw;
        max-height: 110vw;
    }
}

@media all and (max-width: 960px) {
    .wrapper{
        padding: 0 30px;
    }
    .menu{
        gap: 100px;
    }
    .menu ul{
        gap: 15px;
    }
    button{
        padding: 10px 30px;
    }
}

@media all and (max-height: 800px) {
    main{
        margin-bottom: 0;
    }
}