/* Header adjustments */

header {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
}

/* main */

.elefant {
    width: 300px;
    cursor: pointer;
    transition: transform 0.2s;
}

.elefant:hover {
    transform: scale(1.1) rotate(2deg);
}

.spruch {
    margin-top: 20px;
    font-size: 1.4em;
    color: #004080;
}

.elefantContainer {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 10px;
    height: 500px;
}

.registerButton {
    text-decoration: none;
    color: white;
    background-color: #004080;
    border-radius: 4px;
    padding: 20px
}

.homeTitle {
    margin-top: 50px;
}