* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: rgb(84, 84, 84);
}

.container {
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.color-palette {
    font-size: 100px;
    margin: 0px 0px 20px 0px;
    font-family: Arial, Helvetica, sans-serif;
    color: white;
}

.btn {
    height: 60px;
    width: 220px;
    font-size: 30px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 500;
    background: gray;
    border: 2px solid white;
    color: white;
    cursor: pointer;
}