
@property --color1
{
    syntax: '<color>';
    inherits: true;
    initial-value: #ffffff;
}

@property --color2
{
    syntax: '<color>';
    inherits: true;
    initial-value: #ffffff;
}


body {
    margin: 0;
    padding: 0;
    overflow: hidden;
    background: linear-gradient(to bottom, var(--color1), var(--color2));
    width: 100vw;
    height: 100vh;
    position: relative;
    /*transition: --color1 5s ease, --color2 5s ease;*/
}



.card {
    background-color: #404040;
    border-radius: 30px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    aspect-ratio: 4/3;
    height: 35vh;
    /*padding: 10px;*/
}

.pfp {
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 100%;
    border-color: #ffffff;
    border-width: 5px;
    border-style:solid;

    height: 35%;
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translate(-50%, -50%);
}

h1 {
    color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 2em;
    text-align: center;

    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
}

div.debug{
    display: none;
}