.main {

    height: 100vh;
    width: 100%;

    background-image: url('../../Images/Worker.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;


}

.main a {
    margin-top: 2.5em;

    padding: .55em;
    text-decoration: none;
    min-width: 9rem;
    border: .2em solid var(--red);
    border-radius: var(--borderRadius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .95rem;
    color: var(--red);
    font-weight: bold;


}

.main a:hover {
    transition: 650ms;
    transform: scale(.9);
}