body {
    background-color: black;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

main
{
    width: 100vw;
    height: 100vh;
}

.videoPlay 
{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.videoPlay video 
{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
  }

.content
{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    flex-direction: column;
}

.content > .maintitle
{
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    color: white;
    font-size: 48px;
    font-family: "Nova Round", system-ui;
    align-items: center;
}

.maintitle > a:hover
{
    background-color: white;
    color: black;
}

.maintitle > a
{
    max-width: 20rem;
    min-height: 4rem;
    border-radius: 3rem;
    border-style: none;
    background-color: rgba(24, 24, 24, 1);
    color: white;
    font-family: "Dela Gothic One", sans-serif;
    font-weight: 900;
    text-decoration: none;
    font-size: 36px;
    padding-inline: 2rem;
    padding-block: 1rem;
}