body {
    margin: 0;
    font-family: Comic Sans MS;
}

a {
    color: #0057ff;
    transition: all 0.3s linear;
}

a:hover {
    color: #ce7eff;
    transition: all 0.3s linear;
    font-size: 20px;
}

#bgvid {
    position: absolute;
    transform: rotate(90deg);
    transform-origin: bottom left;
    width: 100vh;
    height: 100vw;
    margin-top: -100vw;
    object-fit: cover;
    z-index: -10;
}

#landing {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(10, 10, 10, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

#landingbox {
    width: 60%;
    height: 20%;
    background-color: #fceaff;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.landboxheading {
    font-size: 1.2rem;
    position: relative;
    margin: auto;
    font-family: Helvetica, sans-serif;
}

#enter-button {
    padding: 1rem 2rem;
    font-size: 1rem;
    background: #fceaff;
    color: #000;
    border: 2px solid #fff;
    border-radius: 20px;
    cursor: pointer;
    box-shadow: 0 0 10px white;
    margin: auto;
    transition: all 0.5s linear;
}

#enter-button:hover {
    transition: all 0.5s linear;
    transform: scale(1.2);
}

#container {
    position: relative;
    width: 100vw;
    height: 100vh; 
    filter: blur(10px);
    transition: filter 0.5s ease;
    overflow: hidden;
    display: flex;
}

#homebox {
    margin: auto;
    width: 500px;
    background-color: rgba(245, 220, 240, 0.93);
    border-radius: 30px;
    height: 700px;
    display: flex;
    flex-direction: vertical;
    justify-content: center;
}

#homeboxmid {
    display: grid;
    width: 80%
}

#music-player {
  display: none;
}