body {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    transition: all 0.2s linear;
    border-radius: 20px;
    color: white;
    font-size: 1rem;
    padding: 10px;

    height: 80vh;

    text-decoration: none;
}

.logo-wrapper:hover {
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
}

.logo-wrapper img {
    width: 100%;
    height: 100%;
}