.logo{
    height: calc(100vh - 110px);
    width: auto;
}

.logo img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    margin-left: auto;
    margin-right: auto;
}

img {
    transition: all 500ms ease-out 100ms;
    border-radius: 50%;
}

img:hover {
    transform: scale(1.02);
}

.center {
    display: grid;
    place-items: center;
    text-align: center;
    gap: 10px;
}