body {
    background-color: rgb(51, 51, 51);
    font-family: 'Times New Roman', sans-serif;
    margin: 0;
    color: white;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

p {
    margin: 0;
}


h2, h3 {
    margin: 0;
}

button {
    background-color: black;
    color: white;
    border-radius: 5px;
}

input {
    background-color: lightgray;
    color: black;
    border: none;
    border-inline: none;
    border-radius: 5px;
    height: 19px;
    text-align: center;
    width: 10vw;
}

button:hover {
    color: white;
    opacity: 0.7;
    cursor: pointer;
}

.d-none {
    display: none !important;
}

.noFlowByOpenCard {
    overflow-y: hidden;
}

.df {
    display: flex;
}