body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto';
}
#portal {
    background-color: #ddd;
    min-height: 100vh;
    padding: 7% 20%;
}
#portal .header {
    text-align: center;
    margin-bottom: 75px;
}
#portal .header img {
    width: 100px;
}
.options {
    display: flex;
    justify-content: space-between;
}
.options .option {
    width: 48%;
    border-radius: 7px;
    padding: 30px;
    box-sizing: border-box;
}
.option.employee {
    background-color: #174b70;
}
.option.manager {
    background-color: #fff;
}
.option .icon {
    width: 48px;
    height: 48px;
    border-radius: 24px;
    background-color: #eee;
    text-align: center;
}
.option .icon i {
    color: #174b70;
    font-size: 18px;
    line-height: 48px;
}
.option h2 {
    font-weight: 500;
}
.option.employee h2 {
    color: #eee;
}
.option.employee p {
    color: #eee;
}
.option.manager h2 {
    color: #222;
}
a.no-style {
    all: unset;
}
.option button {
    margin-top: 30px;
    border: none;
    cursor: pointer;
    font-weight: 500;
    border-radius: 3px;
    padding: 10px 20px;
    font-size: 14px;
    letter-spacing: .5px;
    transition: .4s;
}
.option button:hover {
    background: #ef802e;
}
.option button i {
    margin-left: 5px;
}
.employee button {
    background: #eee;
    color: #174b70;
}
.employee button:hover {
    background: #ef802e;
    color: #fff;
}
.manager button {
    background: #174b70;
    color: #fff;
}