@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;400;600&display=swap");

* {
    box-sizing: border-box;
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Poppins", sans-serif;
    margin: 0;
    min-height: 100vh;
}

button {
    background-color: rebeccapurple;
    border: none;
    color: white;
    position: fixed;
    top: 20px;
    right: 2px;
    padding: 1rem;
    transition: transform 0.3s ease-in-out;
}

button.active{
    transform: translateX(-200px);
}

nav {
    background-color: rebeccapurple;
    position: fixed;
    height: 100vh;
    top: 0;
    right: 0;
    padding: 2rem;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
}

nav.active{
    transform: translateX(0);
}

nav ul {
    padding: 0;
    list-style-type: none;
    margin:0;
}

nav ul li{
    padding: 1rem 0;
}

nav a{
    color: white;
    text-decoration: none;
}