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

body {
    background: #040f1a;
}

.navbar {
    height: 80px;
    width: 100%;
    background: #764acc;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    font-family: "Roboto", sans-serif;
}

.title {
    font-family: "Consolas", monospace;
    font-size: 30px;
}

.navbar .links {
    display: flex;
    flex-direction: row;
}

.navbar .links li {
    list-style: none;
}

.navbar .links li .link {
    position: relative;
    text-decoration: none;
    margin: 0 12px;
    color: #0f2144;
    font-weight: 600;
    font-size: 18px;
}

.navbar .links li .link::before {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    height: 3px;
    width: 0;
    background: #493136;
    border-radius: 3px;
    transition: 300ms ease-out;
}

.navbar .links li .link:hover::before {
    width: 100%;
}

.main-content {
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #fff;
    margin: 20px 50px;
}