@import url('https://fonts.googleapis.com/css2?family=Bitcount+Prop+Single:wght@100..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

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

body {
    background: rgb(15, 15, 15);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-items: center;
}

.logo {
    color: orange;
    font-family: "Bitcount Prop Single", sans-serif;
font-size: 3rem;
    margin-left: 2rem;
}

.links {
    display: flex;
    column-gap: 2rem;
    margin-right: 4rem;
}
        

.link {
    position: relative;
    display: inline-block;
}
            
.link::after {
content: "";
position: absolute;
left: 0;
bottom: -8px;
width: 0;
height: 3px;
background: orange;
transition: width 300ms ease-in-out;
}

.link:hover::after {
    cursor: pointer;
    width: 100%;
}

a {
    color: orange;
    text-decoration: none;
}

main {
    height: 90vh;
    display: flex;
    flex-direction: column;
    row-gap: 2rem;
    justify-content: center;
    align-items: center;
}

button {
    background: yellowgreen;
    border: none;
    padding: 1rem;
    border-radius: 8px;
    transition: 200ms ease;

    &:hover {
        cursor: pointer;
        transform: translateY(-6px);
        background:hsl(from yellowgreen 80 100 50)
    }
}