body {
    background-color: #00829b;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@supports (-webkit-touch-callout: none) {
    .wrapper {
        height: calc(100vh - 85px);
    }
}

@supports not (-webkit-touch-callout: none) {
    .wrapper {
        height: calc(100vh - 60px);
    }
}

.wrapper {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.card-container{
    width: 100%;
    flex: 1;
    padding: 10px 0 40px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 800px;
}

.card-container .card{
    width: 700px;
    height: 100%;
    border-radius: 8px;
    box-shadow:0 2px rgba(0,0,0,0.2);
    overflow: hidden;
    margin: 20px;
    text-align: center;
    transaction: all 0.25s;
}

.card-container .card:hover{
    box-shadow: 0 12px 16px rgba(0,0,0,0.2);
}

#bot-container > iframe {
    min-width: 200px;
    width: 100%;
    height: 100%;
}