*{
    box-sizing: border-box;
}

@font-face{
    font-family: QueshaGndR;
    src:url(fonts/Quesha-gndR.ttf);
}

body{
    margin:0;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #97f7df;
}

h1{
    font-family: QueshaGndR;
}

.center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
}

.spore{
    width: min(80vw, 80vh);
    height: min(80vw, 80vh);
    border-radius: 55% 50% 45% 50% / 52% 48% 50% 50%;
    background-color: white;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}

.title{
    font-size: x-large;
    letter-spacing: 0.1em;
    margin: 0 0 32px 0;
}

.button-row {
    display: flex;
    width: 100%;
    justify-content: center;
    max-width: 520px;
    gap: 20px;
    margin: 10%;
}

button{
    border-radius: 12px;
    border: none;
    padding: 12px 32px;
    background-color: #22b393;
    cursor: pointer;
    transition: all 0.1s ease-in-out;
    font-family: QueshaGndR,sans-serif;
    font-size: large;
}

button:hover{
    background-color: #97f7df;
    letter-spacing: 0.1em;
}

/* has() state helped by ChatGPT */
body:has(button:hover){
    background-color: #22b393;
    transition: all 0.25s ease-in-out;
}