.log_buttons {
    justify-content: center;
    display: flex;
    margin-top: 60px;
    gap: 70px;
}

.log_in {
    width: 180px;
    height: 50px;
    border-style: solid;
    border-color: black;
    border-radius: 7px;
    border-width: 3px;
    background-color: none;
    font-weight: bold;
    color: black;
    transition: 0.3s;
}

.register {
    width: 180px;
    height: 50px;
    border-style: solid;
    border-color: black;
    border-radius: 7px;
    border-width: 3px;
    background-color: #24cf2a;
    transition: 0.3s;
    font-weight: bold;
}

.log_in a {
    font-weight: bold;
    color: black;
    text-decoration: none;
}

.register a {
    font-weight: bold;
    color: black;
    text-decoration: none;
}

.log_in:hover {
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.171), 0 0 30px rgba(76, 175, 80, 0.5);
    background-color: #24cf2a;
    transition: 0.3s;
}

.register:hover {
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.171), 0 0 30px rgba(76, 175, 80, 0.5);
    transition: 0.3s;
}

@media (max-width: 500px) {

    .log_buttons {
        flex-direction: column;
        gap: 20px;
        width: 100%;
        margin-top: 40px;
       justify-items: center;
    }

    .log_in,
    .register {
        width: 100%;
    }
}