.header {
    display: flex;
    justify-content: space-between;
    padding: 20px 600px 0px 600px;
    align-items: center;
}

.header-link {
    border-style: solid;
    background-color: transparent;
    border-width: 2px;
    border-color: pink;
    color: rgb(235, 68, 96);
    padding: 4px 10px 4px 10px;
    font-family: 'Patrick Hand';
    font-size: 20px;
    transition: 0.15s;
}

.header-link:hover {
    opacity: 0.5;
    cursor: pointer;
}

.header-link:active {
    opacity: 0.25
}