@import url('https://fonts.googleapis.com/css2?family=Arimo&family=Lobster&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: #24252A;
}

header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 30px 10%;
    background-color: #0c7cba;
    height: 50px;
    margin: 10px;
    border-radius: 50px;
}

footer {
    background-color: #0c7cba;
    height: 40px;
    color: white;
    font-family: 'Arimo', sans-serif;
    display: flex;
    justify-content: center;
    place-items: center;
}

li, a, button {
    font-family: 'Arimo', sans-serif;
    font-weight: 500;
    font-size: 18px;
    text-decoration: none;
}

button {
    padding: 9px 25px;
    background-color: #39baff;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease 0s;
    margin-left: 20px;
    box-sizing: border-box
}

button:hover {
    background-color: #32a5e3;
}

.logo {
    font-family: 'Arimo', sans-serif;
    font-weight: bold;
    font-size: 32px;
    color: white;
    margin-right: auto;
}

.navlinks {
    list-style: none;
}

.navlinks li {
    display: inline-block;
    padding: 0px 20px;
}

.navlinks li a:hover {
    color: #7bbadb;
    border-bottom: 2px solid #32a5e3;
}

.navlinks li a {
    transition: all 0.1s ease 0s;
    color: white;
    padding: 5px 0px;
}

.selected {
    border-bottom: 2px solid #39baff;
}