@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@200;300;400;500&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;

}

html,
body {
    height: 100vh;
   
    font-family: 'Roboto Mono', monospace;

}
body{
    display: relative;
    height: 100%;
    background-color: rgb(148, 129, 129);
    display: flex;
    align-items: center;
    justify-content: center;
   overflow: hidden;
}



.card {
    max-width: 500px;
    
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

h2 {
    font-size: 1.4rem;
    text-align: center;
    font-weight: bold;
}

.card button {
    padding: .5rem 1rem;
}

.card button#no-button {
    position: absolute;

}

.btn-group {
    
    display: inline-flex;
    gap: 5px;
    margin-top: 1rem;

}

button {
    
    font-size: 1.2rem;
    border-radius: .5rem;
    width: 140px;
    max-width: 140px;
    border: none;
    
}

.btn-yes-container {
    width: auto;
}

.btn-no-container {

    width: 140px;
}

nav {
    position: fixed;
    bottom: 0;
}

nav p {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 1rem;
    font-size: .75rem;
    font-weight: bold;
    opacity: 0.3;
    
}
.vid-container{
    position: absolute;
    width: 100%;
    height: 70%;
    top: 15%;
    left: 0;
    display: none;
}
.vid-container video{
    width: 100%;
}