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

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

body {
    background-color: #aeddf4;
}

li, a, button {
    font-family: "Inter", sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #edf0f1;
    text-decoration: none;

}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 10%;
    background-color: #152238;
}

.logo {
    cursor: pointer;
}

header nav ul {
    list-style: none;
}

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

.nav-links li a {
    transition: all 0.3s ease 0s;
}

.nav-links li a:hover {
    color: #2584ec;
}

button {
    padding: 9px 25px;
    background-color: RGB(37, 132, 236, 1);	
    border: none; 
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease 0s;
}

button:hover {
    background-color: RGB(37, 132, 236, 0.6);	
}