.header {
    display: flex;
    justify-content: space-between;
    padding: 20px 600px 0px 600px;
    align-items: center;
}

.header-link {
    border-style: solid;
    border-width: 2px;
    border-color: #a83e00;
    background-color: rgba(0, 0, 0, 0.1);
    color: rgb(235, 68, 96);
    padding: 4px 10px 4px 10px;
    font-family: 'Times New Roman';
    font-size: 30px;
    transition: 0.15s;
}

.header-link:hover {
    opacity: 0.5;
    cursor: pointer;
}

.header-link:active {
    opacity: 0.25
}