body2{
    margin:0;
    padding: 0;
    height: auto;/*potentially 100*/
    display: flex;
    justify-content:center;
    align-items: center;
    min-width: 1000px;
    background:turquoise;
}
.bottombar{
    width: 100%;
    text-align: center;
    background-color: black;
    padding: 30px 0;
    overflow:hidden;
    bottom: 0;
    min-width: 1000px;
}
ion-icon{
    color: white;
    width: 70px;
    height: 70px;
    padding: 20px;
    transition: .75s;
}
ion-icon:hover{
    color: gray;
}

.main{
    margin: 30px 30px 30px 30px;
    height:auto;
    padding: 20px 30px 20px 30px;
    width: 1400px;
    border-radius: 5px;
    justify-content:center;
    align-items: center;
    background-color: #bae8ee;
    overflow:hidden;
    animation: transitionIn 1.5s;
    text-align: center;
}
.main h2 {
    text-align: center;
    margin-top: 40px;
    font-size: 50px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    line-height: 10px;
    /* position:relative; */
}
.main h3 {
    text-align: center;
    margin-top: 35px;
    font-size: 15px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    line-height: 10px;
    font-style: italic;
    /* position:relative; */
}
.main h4 {
    text-align: center;
    margin-top: 40px;
    font-size: 30px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    line-height: 10px;
    font-style: italic;
    /* position:relative; */
}
.main hr { 
    display: block;
    margin-top: 15px; 
    background-color: black;
    color: black;
    overflow: hidden; 
    min-width: 800px;
    justify-content: center;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
    align-items: center;
    height: 2px;
    border:none !important;
}
.bottombar h6{
    margin-top: 15px;
    font-size: 15px;
    color: white;
}
@keyframes transitionIn {
    from{
        opacity: 0;
        transform: rotateX(-10deg);
    }
    to{
        opacity: 1;
        transform: rotateX(0);
    }
}
/* @media screen and (max-width: 1400px) {
    body2{
        margin:0;
        padding: 0;
        height: 280vh;
        display: flex;
        justify-content:center;
        align-items: center;
        min-width: 1000px;
        background:turquoise;
    }
    .main{
        margin: 10px 10px 10px 10px;
        height: 270vh;
        width: 1400px;
        border-radius: 5px;
        justify-content:center;
        align-items: center;
        background-color: #bae8ee;
        overflow:hidden;
        animation: transitionIn 1.5s;
        text-align: center;
    }
} */
/* @media screen and (max-device-width: 500px) {
    .header,.content,.footer{
        display: block;
        position: relative;
        width: 100%;
        overflow: hidden;
    }
    body2{
        margin:0;
        padding: 0;
        display: flex;
        justify-content:center;
        align-items: center;
        min-width: 1000px;
        background:turquoise;
    }
    .main{
        margin: 10px 10px 10px 10px;
        height: 545vh;
        width: 1400px;
        border-radius: 5px;
        justify-content: center;
        align-items: center;
        background-color: lightgray;
        overflow:hidden;
        animation: transitionIn 1.5s;
    }

} */