.sites_list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin: 75px auto;
    padding: 15px;
    width: 100%;
    max-width: 500px;
    height: auto;
    overflow: hidden;
    animation: expand 1s;
}

.site {
    display: block;
    text-decoration: none;
    color: black;
    transition: all 0.2s;
    backface-visibility: hidden;

    &:hover {
        transform: scale(1.04);
    }
}

.site {
    padding: 25px;
    text-align: center;
    width: 100%;
    background-color: white;
    box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, .1);
    border-radius: 5px;
}

.site img {
    height: 20px;
    margin-bottom: -3px;
}

.site h3 {
    padding: 10px;
    display: inline;
}

@keyframes expand {
    0% {
        height: 0;
        padding: 0;
    }

    100% {
        height: auto;
        padding: 15px;
    }
}