@import url("/css/reset.css");

html,
body {
    height: 100%;
    margin: 0; /* just in case */
    background-color: black;
    color: white;
}

.wrapper {
    height: 100%;
}

.center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.vid-button {
    background-color: #483d8b;
    padding: 20px 60px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 48px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    border: solid 3px white;
    transition: all ease 0.3s;
}

.vid-button:hover {
    background-color: #584ba3;
    transform: scale(1.1);
}

.video {
    display: none;
    max-width: 100vw; /* constrain to viewport width */
    max-height: 100vh;
}
