﻿html, body{
    background-color: #EEEEEE;
}

.connect-content {
    background-color: white;
    padding: 30px;
    flex: 1;
    margin: 15px;
}

.connect-content .column{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items:center;
        min-height: 125px;
        margin-top:30px;
}

.connect-container {
    max-width: 500px;
    margin: auto;
    margin-top: 50px;
    animation-duration: 1s;
    animation-name: opacity;
}

.imageheader {
    background-color: #072533;
    padding: 21px 10px;
    width: 100px;
    border: 5px solid white;
    border-radius: 62px;
    height: 100px;
    /* position: absolute; */
    margin-top: -90px;
    /* margin-left: 150px; */
}

span.choiceLabel {
    line-height: 30px;
    background-color: #072533;
    color: white;
    width: 70px;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 45px;
    height: 70px;
    font-weight: bold;
}


.slideFromRight {
    animation-duration: 1s;
    animation-name: slideFromRight;
}
.slideFromLeft {
    animation-duration: 1s;
    animation-name: slideFromLeft;
}

h3 {
}


@keyframes slideFromRight {
    from {
        margin-left: 100%;
        opacity:0;
    }

    to {
        margin-left: 0%;
        opacity:1;
    }
}

@keyframes slideFromLeft {
    from {
        margin-right: 100%;
        opacity: 0;
    }

    to {
        margin-right: 0%;
        opacity: 1;
    }
}

a.column:hover {
    text-decoration: none;
}