* {
    margin: 0px;    
    padding: 0px;
    box-sizing: border-box;
}

body{
    background-color: rgb(28, 28, 35);
}

.btn {
    padding: 10px 20px;
    margin: 20px;
    height: 100px;
    width: 120px;
    border: none;
    border: 2px solid white;
    text-transform: capitalize;
    cursor: pointer;
}

.content-container {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.purple {
    background-color: purple;
}

.blue {
    background-color: blue;
}

.red {
    background-color: red;
}

.green {
    background-color: green;
}

.yellow {
    background-color: yellow;
}

.teal {
    background-color: teal;
}