@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700&display=swap');

* {
    box-sizing: border-box;
}

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

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

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

nav{
    background-color: rebeccapurple;
    position:fixed;
    top:0;
    right:0;
    height:100vh;
    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;
}