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-right: auto;
    margin-left: auto;
    width: auto;
    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: 50px;
    /* position:relative; */
}
.main h3 {
    text-align: center;
    margin-top: 35px;
    font-size: 25px;
    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;
}
.main hr { 
    display: block;
    margin-top: 15px; 
    background-color: black;
    color: black;
    overflow: hidden; 
    min-width: 800px;
    justify-content: center;
    text-align: center;
    /* margin: auto; */
    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);
    }
}
.coreshell{
    margin: 30px 30px 30px 30px;
    height:auto;
    padding: 20px 30px 20px 30px;
    height: auto;/*-10 from height in body*/
    border-radius: 5px;
    justify-content:center;
    align-items: center;
    min-width: 800px;
    background-color: #bae8ee;
    /* overflow:hidden; */
    width:auto;
    animation: transitionIn 1.5s;
}
