.center{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 50px;
}
.center img{
    height: 450px;
    width: 450px;
}
.center .text{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.center .text h1{
    font-family: var(--font-minecraft-bold);
    text-wrap: nowrap;
    font-size: 35px;
    line-height: 1.5;
}
.center .text h3{
    font-size: 20px;
}
.center .text a{
    font-size: 30px;
    font-family: var(--font-default);
}
@media screen and (max-width: 1050px){
    .center{
        flex-direction: column !important;
    }
}
@media screen and (max-width: 600px){
    .center img{
        height: 70vw;
        width: 70vw;
    }
    .center .text h1{
        text-wrap: balance !important;
        line-height: 1.5;
    }
}