footer {
    padding-bottom: 10px;
    background-color: var(--color-tertiary);
    box-shadow: 0 0 5px var(--color-tertiary);
}

.column-box {
    width: 25%;
}

.column-title {
    text-align: center;
}

.column-row-box {
    display: flex;
	justify-content: space-between;
    width: 80%;
    height: 30px;
    margin: 0 auto;
    padding: 10px 0;
    border-radius: 10px;
}

.column-row-icon {
    width: 30px;
    height: 30px;
    margin: auto 20px;
    object-fit: contain;
    box-sizing: border-box;
}

.column-row-text {    
    width: calc(100% - 50px);
    margin: auto 0;
    box-sizing: border-box;
    color: var(--color-text-main);
}

.column-row-box:hover {
    cursor: pointer;
	box-shadow: 0 0 5px black;
}

.link {
    text-decoration: none;
    color: black;
}

#copy-row {
    display: flex;
    justify-content: space-around;
    margin: 10px 30px;
}