.container{
    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
    padding: 24px;

    position: absolute;
    top: 0;
    left: 0;
}

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

.logo{
    width: 100px;
    height: 100px;
    user-select: none;
    -webkit-user-select: none;
}

.title, .subtitle{
    text-align: center;
    font-family: "Open Runde";
    font-size: 48px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -3.84px;
}

.title{
    color: #000;
}

.subtitle{
    color: rgba(0, 0, 0, 0.25);
}

.screenshot{
    width: max(200px, 25vh);
    border-radius: 32px;
    border: 8px solid rgba(0, 0, 0, 0.03);

    box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.03);
}

.footer{
    width: 100%;
    display: flex;
    gap: 8px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.available{
    color: #000;
    width: 100%;
    text-align: center;
    font-family: "Open Runde";
    font-size: 36px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -2px;
}

.links{
    display: flex;
    justify-content: center;
    gap: 24px;
}

.link{
    color: rgba(0, 0, 0, 0.50);
    transition: 0.1s all;
    text-align: center;
    font-family: "Open Runde";
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -1px;
    text-decoration: none;
}

.link:hover{
    color: rgba(0, 0, 0, 0.25);
    transition: 0.1s all;
}

.support{
    color: rgba(0, 0, 0, 0.75);
    transition: 0.1s all;
    font-family: "Open Runde";
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -1px;
    text-decoration: none;

}