@import url('https://fonts.googleapis.com/css?family=Poppins&display=swap');
/* font-family: 'Poppins', sans-serif; */

body {
    font-family: 'Poppins', sans-serif;
    width: 750px;
    margin: auto;
}

h3 {
    margin-block-start: 0px;
    color: #0F5531;
    text-align: center;
}

/* Style the tab */

.tab {
    overflow: hidden;
    border: 1px solid #ccc;
    background-color: #f1f1f1;
    width: 750px;
    display: flex;
    justify-content: center;
}

/* Style the buttons that are used to open the tab content */

.tab button {
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.3s;
    font-family: 'Poppins', sans-serif;
    color: #0F5531;

}

/* Change background color of buttons on hover */

.tab button:hover {
    background-color: #ddd;
}

/* Create an active/current tablink class */

.tab button.active {
    background-color: #ccc;
}

/* Style the tab content */

.tabcontent {
    display: none;
    border: 1px solid #ccc;
    border-bottom: none;
    width: 750px;
    justify-content: center;
}

iframe {
    width: 750px;
    height: 670px;
}

.tabcontent {
    animation: fadeEffect 1s;
    /* Fading effect takes 1 second */
}

/* Go from zero to full opacity */

@keyframes fadeEffect {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: white;
    border-radius: 5px;
    width: 750px;
}
.title {
    background-color: #F7F7F7;
    width: 750px;
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
    margin-bottom: 10px;
}

.title p {
    width: 700px;
    font-size: 1.2rem;
    margin: 15px auto;
    font-weight: bold;
    color: #0F5531;
    text-align: center;
}