@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap');

* {
    box-sizing: border-box;
    padding: 0%;
    margin: 0;
}

body {
    width: 100vw;
    height: 100vh;
    background-color: #161616;
    color: #ffffff;
    font-family: 'Roboto', sans-serif;
}

.container {
    width: 100%;
    height: 100%;
    text-align: center;
    justify-content: center;
}

