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

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: white;
    font-size: larger;
}

body {
    font-family: 'Roboto', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: rgb(184, 184, 184);
}

.container {
    width: 95%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    min-width: 280px;
    margin: 5px 5px;
    height: 60px;
    background-color: rgb(50, 50, 50);
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

.btn:hover {
    background-color: rgb(85, 85, 85);
}

