@import url('https://fonts.googleapis.com/css2?family=Arimo&family=Lobster&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Arimo', sans-serif;
}

html {
    height: 100%;
}
body {
    background-color: #24252A;

}

main {
    display: flex;
    min-height: 85vh;
    flex-direction: column;
}

li, .navlinks a, button {
    font-weight: 500;
    font-size: 19px;
    color: white;
    text-decoration: none;
}

header {
    background-color: #0c7cba;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 30px 10%;
    height: 50px;
    border-radius: 50px;
    margin: 15px 15px 0px 15px;
}

footer {
    margin-bottom: auto;
    padding: 0;
    background-color: #0c7cba;
    height: 65px;
    width: 100%;
    color: white;
    text-align: center;
    padding: 15px;
}

.wrapper {
    min-height: calc(100vh - 120px);
  }

.contact {
    padding: 9px 25px;
    background-color: #39baff;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease 0s;
    margin-left: 20px;
}

.contact:hover {
    background-color: #32a5e3;
}

.logo {
    color: white;
    font-weight: bold;
    font-size: 32px;
    margin-right: auto;
}

.navlinks {
    list-style: none;
}

.navlinks li {
    display: inline-block;
    padding: 0px 20px;
}

.navlinks li a {

    padding-bottom: 5px;
}

.navlinks li a:hover {
    color: #7bbadb;
    border-bottom: 2px solid #32a5e3;
    
}

.selected {
    border-bottom: 2px solid #39baff;
}