*{
    padding: 0;
    margin: 0;
}
:root{
    --accent-color: #ff00e6;
    
}

body{
    font-family: "Open Sans", 'Segoe UI', sans-serif;
    color: #fff;
    background: black;
    background: repeating-linear-gradient(
        45deg,
        #250022,
        #250022 2px,
        #000 2px,
        #000 32px
      );
    height: 100vh;
    padding: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: none;
}
header{
    width: 300px;
    overflow: visible;
    display: flex;
    flex-direction: column;
    align-items: center;
    a{
        padding-top: 10px;
        /* text-decoration: none; */
        color: var(--accent-color);
    }
}
main{
    width: 500px;
    padding-top: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    align-items: center;
    overflow: hidden;
}
h1 {
    letter-spacing: 10px;
    font-size: 56px;
    background: -webkit-linear-gradient(var(--accent-color), #FFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transform: perspective(600px) translate3d(60px, 0, 20px) rotateY(65deg);
    transition: 0.2s font-size;
    text-wrap: nowrap;
}
h2{
    font-weight: 400;
    border-bottom: 4px solid var(--accent-color);
    border-top: 4px solid var(--accent-color);
    padding: 12px;
    margin: 8px;
    background: rgba(0, 0, 0, 0.1);
    text-wrap: wrap;
}

button{
    padding: 10px;
    font-size: 20px;
    background: #ee00d6;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    transition: 0.2s background, 0.2s border;
}
button:hover{
    background: #ff00e6;
    border: 1px solid black;
    cursor: pointer;
}

@media screen and (max-width: 800px) {
    h1 {
        letter-spacing: 7px;
        font-size: 50px;
        transform: perspective(600px) translate3d(40px, 0, 20px) rotateY(65deg);
    }
    body{
        padding: 16px;
    }
    main{
        width: 400px;
    }
}
@media screen and (max-width: 400px) {
    body{
        padding: 8px;
    }
    header{
        width: 290px;
    }
    main{
        width: 290px;
    }
}