/* Copyright (c) Spiideo AB */

body {
    background: linear-gradient(90deg, #005ce8 0%, #196cea 50%, #327cec 100%);
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    display: flex;
    justify-content: center;
}

.wrapper {
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: calc(100vh - 16px);
    width: fit-content;
    gap: 50px;
}

.logo {
    max-height: 10vh;
    margin-bottom: 30px;
}

.image {
    max-width: 70vw;
    max-height: 40vh;
    transition: ease-in-out 0.5s;
    border-radius: 12px;
}

.image:hover {
    transform: scale(1.02);
}

.footer {
    bottom: 5px;
    width: 100%;
    text-align: center;
}

a {
    color: white;
}

.info {
    text-align: left;
}

.title {
    font-weight: bold;
    margin-bottom: 8px;
}

.infoWrapper {
    display: flex;
    justify-content: space-between;
    width: 100%;
}