#login{
    text-decoration: none;
    cursor: pointer;
    margin-left: auto;

    width: clamp(160px, 22vw, 300px);
    height: clamp(45px, 7vw, 80px);

    display: flex;
    justify-content: center;
    align-items: center;

    font-family: "Michroma", sans-serif;
    font-size: clamp(14px, 2.3vw, 35px);
    text-align: center;

    color: white;
    background: black;
    border: 1px solid white;
    transition: 0.3s;
}

#login:hover{
    color: black;
    border-color: black;
    background: silver;
}