* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: rgb(89, 101, 112);
}

.box1 {
    display: flex;
    width: 100%;
    background-color: rgb(0, 0, 0);
    justify-content: center;
}

.links {
    color: white;
    text-decoration: none;
    font-size: larger;
}

.options {
    float: left;
    padding: 30px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    list-style: none;
    transition: all 0.3s ease 0s;
}

.options:hover {
    background-color: rgb(89, 101, 112);
}
