body {
    background-color: bisque;
    font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif
}

.home-para {
    margin:80px
}

.link-box {
    display:flex;
}

.link-box a {
    border: 4px solid black;
    padding: 10px;
    margin: 10px;
    flex:1;
}

.link-box a:link, .link-box a:visited {
    background-color: antiquewhite;
    color: black;
    border: 2px solid orange;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
}

.link-box a:hover,.link-box a:active {
    background-color: orange;
    color: white;
}